Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## 18.5.0
###### Release Date: 15-07-2026

### ✨ New Features
* Added `Intercom.suppressProactiveContent` to let host apps suppress carousel and survey content independently of in-app messages

### 🐛 Bug Fixes
* Fixed a crash when the device's legacy SharedPreferences was unavailable (e.g. an isolated process) during the DataStore migration
* Fixed voice recordings and in-progress transcription being lost on screen rotation, and removed the recording-time orientation lock (which Android 17 ignores on large-screen displays anyway)

### 👉 Dependency updates
* Firebase Messaging: Updated to 25.1.1

### 👉 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.4.0
###### Release Date: 08-07-2026

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.0'
implementation 'io.intercom.android:intercom-sdk:18.5.0'
implementation 'com.google.firebase:firebase-messaging:24.1.+'
}
```
Expand All @@ -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.4.0'
implementation 'io.intercom.android:intercom-sdk-base:18.5.0'
}
```

Expand Down
2 changes: 1 addition & 1 deletion sample/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@ dependencies {

implementation 'androidx.datastore:datastore-preferences:1.2.1'

implementation 'io.intercom.android:intercom-sdk:18.4.0'
implementation 'io.intercom.android:intercom-sdk:18.5.0'
implementation 'com.google.firebase:firebase-messaging:25.0.1'
}