Skip to content

4.25.0

Compare
Choose a tag to compare
@sendbird-sdk-deployment sendbird-sdk-deployment released this 09 May 07:18
· 18 commits to main since this release
ef9b4a5

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 the Conscrypt 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 the Conscrypt 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 use Conscrypt—no additional code is needed.
dependencies {
    implementation("org.conscrypt:conscrypt-android:2.5.2")
}