diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d02b81..d6d745a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 15.14.0 +###### Release Date: 13-02-2025 + +### 📱 New Features +* This release supports conditionally displaying attributes when filling out ticket forms. + +### 🚀 Enhancements +* Improved scrolling performance on the conversation screen +* Added dynamic Fin thinking states + +### 🐛 Bug Fixes +* Clicking a chat push notification now opens the Intercom conversation directly instead of first launching the launcher activity of your app. +* Fixed infinite loading in the conversation screen if a workflow contains an article + ## 15.13.0 ###### Release Date: 27-01-2025 diff --git a/README.md b/README.md index ee6a411..eb4653d 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.13.0' + implementation 'io.intercom.android:intercom-sdk:15.14.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:15.13.0' + implementation 'io.intercom.android:intercom-sdk-base:15.14.0' } ``` diff --git a/sample/app/build.gradle b/sample/app/build.gradle index 632ec0e..97e9c28 100644 --- a/sample/app/build.gradle +++ b/sample/app/build.gradle @@ -65,6 +65,6 @@ dependencies { implementation("androidx.datastore:datastore-preferences:1.0.0") - implementation("io.intercom.android:intercom-sdk:15.13.0") + implementation("io.intercom.android:intercom-sdk:15.14.0") implementation("com.google.firebase:firebase-messaging:24.1.0") }