diff --git a/CHANGELOG.md b/CHANGELOG.md index e3ad27b..b7c5187 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 17.0.3 +###### Release Date: 23-07-2025 + +* Improved dark mode support + +### 🐛 Bug Fixes +* Fixed issue where audio was missing in certain videos + ## 17.0.2 ###### Release Date: 11-07-2025 diff --git a/README.md b/README.md index e02ea31..f93b063 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.2' + implementation 'io.intercom.android:intercom-sdk:17.0.3' 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.2' + implementation 'io.intercom.android:intercom-sdk-base:17.0.3' } ``` diff --git a/sample/app/build.gradle b/sample/app/build.gradle index 1b02c73..8d6562f 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.2") + implementation("io.intercom.android:intercom-sdk:17.0.3") implementation("com.google.firebase:firebase-messaging:24.1.0") }