diff --git a/CHANGELOG.md b/CHANGELOG.md index 59267be..1f22a02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,25 @@ # Changelog +## 17.0.1 +###### Release Date: 11-07-2025 + +### 🐛 Bug Fixes +* Fixed `NoSuchMethodError: No virtual method getParcelableArrayExtra` crash happening on lower Android versions +* Fixed `IllegalStateException: The specified child already has a parent` crash +* Fix in-app notification crash in Unity projects by improving legacy activity detection + +### Dependency updates +* `com.google.firebase:firebase-messaging` to `24.1.2` + ## 17.0.0 ###### Release Date: 26-06-2025 ### 🚀 Enhancements * Added support for Dark Mode. This feature is currently in beta, and will be enabled for all customers in a future release. +### 👉 Dependency updates +* Removed `io.sentry:sentry-bom` dependency + ## 16.3.0 ###### Release Date: 05-06-2025 diff --git a/README.md b/README.md index 6b3bb3e..a1a4cad 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:17.0.0' + implementation 'io.intercom.android:intercom-sdk:17.0.1' 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:17.0.0' + implementation 'io.intercom.android:intercom-sdk-base:17.0.1' } ``` diff --git a/sample/app/build.gradle b/sample/app/build.gradle index a774224..e0cfa59 100644 --- a/sample/app/build.gradle +++ b/sample/app/build.gradle @@ -65,6 +65,6 @@ dependencies { implementation("androidx.datastore:datastore-preferences:1.1.3") - implementation("io.intercom.android:intercom-sdk:17.0.0") + implementation("io.intercom.android:intercom-sdk:17.0.1") implementation("com.google.firebase:firebase-messaging:24.1.0") }