diff --git a/CHANGELOG.md b/CHANGELOG.md index 75d3acd..33affd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 15.11.2 +###### Release Date: 22-11-2024 + +### 🐛 Bug Fixes +* Prevented ProGuard from removing critical classes during build time +* Resolved issues with downloading images in the app +* Bumped androidx.compose:compose-bom from 2024.10.00 to 2024.10.01. +* Bumped androidx.compose.animation:animation-graphics-android from 1.6.8 to 1.7.5. + ## 15.11.1 ###### Release Date: 08-11-2024 diff --git a/README.md b/README.md index 5e09bfc..c002423 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:15.11.1' + implementation 'io.intercom.android:intercom-sdk:15.11.2' implementation 'com.google.firebase:firebase-messaging:23.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:15.11.1' + implementation 'io.intercom.android:intercom-sdk-base:15.11.2' } ``` diff --git a/sample/app/build.gradle b/sample/app/build.gradle index 817ec5a..a6cf17e 100644 --- a/sample/app/build.gradle +++ b/sample/app/build.gradle @@ -64,7 +64,7 @@ dependencies { implementation("androidx.datastore:datastore-preferences:1.0.0") - implementation("io.intercom.android:intercom-sdk:15.11.1") + implementation("io.intercom.android:intercom-sdk:15.11.2") implementation("com.google.firebase:firebase-messaging:23.1.0") }