4.25.0
·
18 commits
to main
since this release
Improvements
- The Chat SDK no longer includes
Conscrypt
by default. If your app targets Android 9 (Pie, API level 28) or lower and you want to enable TLS 1.3, you need to manually add theConscrypt
dependency as shown below. Android 10 and above natively support TLS 1.3, so this step is only necessary for older OS versions. Even if you don’t add theConscrypt
dependency, the SDK will still work using TLS 1.2 without any functional issues. Once the dependency is added, the SDK will automatically detect and useConscrypt
—no additional code is needed.
dependencies {
implementation("org.conscrypt:conscrypt-android:2.5.2")
}