1
0
mirror of https://github.com/etesync/android synced 2024-11-22 16:08:13 +00:00

Version bump to 0.9.0.1

* with minor fixes
This commit is contained in:
Ricki Hirner 2015-10-19 19:04:01 +02:00
parent 661276450c
commit 8f52bf160e
No known key found for this signature in database
GPG Key ID: C4A212CF0B2B4566
2 changed files with 3 additions and 3 deletions

View File

@ -17,8 +17,8 @@ android {
minSdkVersion 14
targetSdkVersion 23
versionCode 78
versionName "0.9"
versionCode 79
versionName "0.9.0.1"
buildConfigField "java.util.Date", "buildTime", "new java.util.Date()"
}

View File

@ -115,7 +115,7 @@ public class SSLSocketFactoryCompat extends SSLSocketFactory {
}
if (Build.VERSION.SDK_INT < 20 && cipherSuites != null) {
Constants.log.debug("Setting allowed TLS ciphers: " + TextUtils.join(", ", protocols));
Constants.log.debug("Setting allowed TLS ciphers: " + TextUtils.join(", ", cipherSuites));
ssl.setEnabledCipherSuites(cipherSuites);
}
}