From 59136710f3962fdbdae7e7a6c758f4668c694403 Mon Sep 17 00:00:00 2001 From: Intercom Android Release Robot Date: Thu, 6 Aug 2026 11:00:49 +0000 Subject: [PATCH] Release 18.7.0 --- CHANGELOG.md | 13 +++++++++++++ README.md | 4 ++-- sample/app/build.gradle | 2 +- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aaa8214..9558349 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 18.7.0 +###### Release Date: 06-08-2026 + +### 🚀 Enhancements +* Inline `` spans in messages now render in a monospace font on the code background +* R8 can now remove unused Intercom SDK classes from minified host apps — the SDK's consumer ProGuard rules no longer pin every class. Names and members of retained classes are unchanged, so reflection, Gson parsing and WebView bridges behave as before + +### 🐛 Bug Fixes +* Fixed crash reports being attributed to Intercom when an Intercom frame merely appeared in a host-app crash's stack trace — attribution is now by throw site + +### 👉 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.6.0 ###### Release Date: 27-07-2026 diff --git a/README.md b/README.md index e836888..c570553 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.6.0' + implementation 'io.intercom.android:intercom-sdk:18.7.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.6.0' + implementation 'io.intercom.android:intercom-sdk-base:18.7.0' } ``` diff --git a/sample/app/build.gradle b/sample/app/build.gradle index a50858e..51c6158 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.6.0' + implementation 'io.intercom.android:intercom-sdk:18.7.0' implementation 'com.google.firebase:firebase-messaging:25.0.1' }