diff --git a/CHANGELOG.md b/CHANGELOG.md index 49e1847..a7593a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 18.3.2 +###### Release Date: 01-07-2026 + +### 🐛 Bug Fixes +* Fixed a crash rendering the legacy messenger app card when the WebView provider threw an unexpected error during initialization +* Fixed the composer opening in a new task (or silently failing to open) when launched from Help Center on some host apps +* Fixed a crash opening Help Center when no back-press dispatcher was available in the host app +* Fixed crashes when picking a missing or unreadable media file, and a gap that let a required upload question be bypassed +* Fixed a crash compressing a video whose source file was missing or unreadable + +### 👉 Dependency updates +* Compose BOM: Updated to 2026.06.00 + ## 18.3.1 ###### Release Date: 23-06-2026 diff --git a/README.md b/README.md index 1979c7d..81d4897 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.3.1' + implementation 'io.intercom.android:intercom-sdk:18.3.2' 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.3.1' + implementation 'io.intercom.android:intercom-sdk-base:18.3.2' } ``` diff --git a/sample/app/build.gradle b/sample/app/build.gradle index 87bfa25..a8f0d09 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.3.1' + implementation 'io.intercom.android:intercom-sdk:18.3.2' implementation 'com.google.firebase:firebase-messaging:25.0.1' }