diff --git a/CHANGELOG.md b/CHANGELOG.md index 33affd0..ec0c91b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 15.11.3 +###### Release Date: 11-12-2024 + +### 🐛 Bug Fixes +* Fixed the bug where users were unable to add a phone number in the attribute collector +* Fixed a crash caused by `IllegalArgumentException: y must be < bitmap.height()` + +### 👉 Dependency updates +* Compose BOM: Updated to 2024.11.00 +* AndroidX ConstraintLayout: Updated to 2.2.0 + +**Note** +This release contains some beta features. + ## 15.11.2 ###### Release Date: 22-11-2024 diff --git a/README.md b/README.md index c002423..c585c21 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.2' + implementation 'io.intercom.android:intercom-sdk:15.11.3' 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.2' + implementation 'io.intercom.android:intercom-sdk-base:15.11.3' } ``` diff --git a/sample/app/build.gradle b/sample/app/build.gradle index a6cf17e..1b37df3 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.2") + implementation("io.intercom.android:intercom-sdk:15.11.3") implementation("com.google.firebase:firebase-messaging:23.1.0") }