diff --git a/CHANGELOG.md b/CHANGELOG.md index 9878c9a..7f38e9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## 15.6.0 +###### Release Date: 4-01-2024 +### 📱 New Features +- Added camera input type +- Added a button to open previous messages in programmatically launched conversations + +### 🐛 Bug Fixes +- Fixed a crash where Instant class was not found on pre API level 26 devices + +👉 This update also removes Lottie as a dependency to the Intercom SDK + ## 15.5.1 ###### Release Date: 1-12-2023 ### 🚀 Enhancements diff --git a/README.md b/README.md index ac3a29b..8f12b96 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,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.5.1' + implementation 'io.intercom.android:intercom-sdk:15.6.0' implementation 'com.google.firebase:firebase-messaging:20.+' } ``` @@ -53,7 +53,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.5.1' + implementation 'io.intercom.android:intercom-sdk-base:15.6.0' } ``` diff --git a/sample/app/build.gradle b/sample/app/build.gradle index 5cca222..d8ff69d 100644 --- a/sample/app/build.gradle +++ b/sample/app/build.gradle @@ -65,7 +65,7 @@ dependencies { implementation("androidx.datastore:datastore-preferences:1.0.0") - implementation("io.intercom.android:intercom-sdk:15.5.1") + implementation("io.intercom.android:intercom-sdk:15.6.0") implementation("com.google.firebase:firebase-messaging:23.2.0") testImplementation 'junit:junit:4.13.2'