- New version 17.2.1.

This commit is contained in:
Juha Heinanen
2020-03-22 12:22:38 +02:00
parent 8d256da365
commit 5448b6de7b
3 changed files with 4 additions and 3 deletions

View File

@ -8,8 +8,8 @@ android {
applicationId = 'com.tutpro.baresip' applicationId = 'com.tutpro.baresip'
minSdkVersion 21 minSdkVersion 21
targetSdkVersion 28 targetSdkVersion 28
versionCode = 112 versionCode = 113
versionName = '17.2.0' versionName = '17.2.1'
externalNativeBuild { externalNativeBuild {
cmake { cmake {
cFlags '-DHAVE_INTTYPES_H' cFlags '-DHAVE_INTTYPES_H'

View File

@ -126,7 +126,7 @@ class AccountsActivity : AppCompatActivity() {
} }
Utils.putFileContents(BaresipService.filesPath + "/accounts", accounts.toByteArray()) Utils.putFileContents(BaresipService.filesPath + "/accounts", accounts.toByteArray())
Log.d("Baresip", "Saved $count account(s) to '${BaresipService.filesPath}/accounts'") Log.d("Baresip", "Saved $count account(s) to '${BaresipService.filesPath}/accounts'")
Log.d("Baresip", "Saved accounts '${accounts}' to '${BaresipService.filesPath}/accounts'") // Log.d("Baresip", "Saved accounts '${accounts}' to '${BaresipService.filesPath}/accounts'")
} }
fun noAccounts(): Boolean { fun noAccounts(): Boolean {

View File

@ -0,0 +1 @@
- Fixed bug in storing of accounts to file system.