diff --git a/CHANGELOG.md b/CHANGELOG.md index feadf78..aaa8214 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## 18.6.0 +###### Release Date: 27-07-2026 + +### ✨ New Features +* Added pinch-to-zoom, double-tap-to-zoom, and pan on full-screen image attachments + +### 🐛 Bug Fixes +* Fixed an ANR during `Intercom.initialize()` caused by Android Keystore and persisted-identity reads blocking the calling thread +* Fixed the keyboard covering form fields in Canvas Kit sheets by handling IME insets +* Fixed a crash from a null `trustedFileExtensions` in persisted attachment settings +* Fixed empty list items rendering a dangling bullet in message and survey text + +### 👉 Note +* The next major version of the Android SDK will be built with Kotlin 2.3 and will require apps to use a minimum Kotlin version of `2.0` due to binary compatibility + ## 18.5.0 ###### Release Date: 15-07-2026 diff --git a/README.md b/README.md index 400400b..e836888 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ There are 2 options for installing Intercom on your Android app. Add the following dependency to your app's `build.gradle` file: ```groovy dependencies { - implementation 'io.intercom.android:intercom-sdk:18.5.0' + implementation 'io.intercom.android:intercom-sdk:18.6.0' implementation 'com.google.firebase:firebase-messaging:24.1.+' } ``` @@ -49,7 +49,7 @@ dependencies { If you'd rather not have push notifications in your app, you can use this dependency: ```groovy dependencies { - implementation 'io.intercom.android:intercom-sdk-base:18.5.0' + implementation 'io.intercom.android:intercom-sdk-base:18.6.0' } ``` diff --git a/sample/app/build.gradle b/sample/app/build.gradle index c46509b..a50858e 100644 --- a/sample/app/build.gradle +++ b/sample/app/build.gradle @@ -63,6 +63,6 @@ dependencies { implementation 'androidx.datastore:datastore-preferences:1.2.1' - implementation 'io.intercom.android:intercom-sdk:18.5.0' + implementation 'io.intercom.android:intercom-sdk:18.6.0' implementation 'com.google.firebase:firebase-messaging:25.0.1' }