New version 53.1.1
This commit is contained in:
@ -9,8 +9,8 @@ android {
|
||||
applicationId = 'com.tutpro.baresip'
|
||||
minSdkVersion 21
|
||||
targetSdkVersion 33
|
||||
versionCode = 269
|
||||
versionName = '53.1.0'
|
||||
versionCode = 270
|
||||
versionName = '53.1.1'
|
||||
externalNativeBuild {
|
||||
cmake {
|
||||
cFlags '-DHAVE_INTTYPES_H -lstdc++'
|
||||
@ -19,7 +19,8 @@ android {
|
||||
}
|
||||
}
|
||||
ndk {
|
||||
//noinspection ChromeOsAbiSupport
|
||||
// abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86_64'
|
||||
// noinspection ChromeOsAbiSupport
|
||||
abiFilters 'armeabi-v7a', 'arm64-v8a'
|
||||
}
|
||||
vectorDrawables.useSupportLibrary = true
|
||||
|
||||
@ -416,7 +416,8 @@ class AccountActivity : AppCompatActivity() {
|
||||
acc.authUser = Api.account_auth_user(acc.accp)
|
||||
Log.d(TAG, "New auth user is ${acc.authUser}")
|
||||
save = true
|
||||
reRegister = true
|
||||
if (acc.regint > 0)
|
||||
reRegister = true
|
||||
} else {
|
||||
Log.e(TAG, "Setting of auth user failed")
|
||||
}
|
||||
@ -489,7 +490,8 @@ class AccountActivity : AppCompatActivity() {
|
||||
else
|
||||
Api.account_set_sipnat(acc.accp, "outbound")
|
||||
save = true
|
||||
reRegister = true
|
||||
if (acc.regint > 0)
|
||||
reRegister = true
|
||||
}
|
||||
|
||||
val newConfiguredRegInt = regInt.text.toString().trim().toInt()
|
||||
@ -741,6 +743,12 @@ class AccountActivity : AppCompatActivity() {
|
||||
getString(R.string.register_help)
|
||||
)
|
||||
}
|
||||
binding.RegIntTitle.setOnClickListener {
|
||||
Utils.alertView(
|
||||
this, getString(R.string.reg_int),
|
||||
getString(R.string.reg_int_help)
|
||||
)
|
||||
}
|
||||
binding.AudioCodecsTitle.setOnClickListener {
|
||||
val i = Intent(this, CodecsActivity::class.java)
|
||||
val b = Bundle()
|
||||
|
||||
4
fastlane/metadata/android/en-US/changelogs/53.1.1.txt
Normal file
4
fastlane/metadata/android/en-US/changelogs/53.1.1.txt
Normal file
@ -0,0 +1,4 @@
|
||||
- Launcher icon improvements
|
||||
- Do not try to register new account if Register has not been checked
|
||||
- Added Registration Interval help text
|
||||
- New Russian translations
|
||||
Reference in New Issue
Block a user