Skip to content

Commit

Permalink
Release 15.9.1 (#639)
Browse files Browse the repository at this point in the history
  • Loading branch information
liutingdu authored Jun 14, 2024
1 parent 26b15e5 commit 218e333
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 7 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 15.9.1
###### Release Date: 14-06-2024
### 🐛 Bug Fixes
- Fixed the issue where push open stats weren’t tracked correctly.
- Fixed the issue where deep links in push message doesn’t work for React Native.
- Attribute collectors are now disabled now if the conversation is closed.

### 👉 Dependency updates
* Kotlin Coroutines: Updated from version 1.8.0 to 1.8.1
* AndroidX Paging: Updated from version 3.2.1 to 3.3.0
* Lifecycle: Updated from version 2.6.2 to 2.8.1
* Gson: Updated from 2.10.1 to 2.11.0

## 15.9.0
###### Release Date: 16-05-2024
### 🐛 Bug Fixes
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ 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.9.0'
implementation 'com.google.firebase:firebase-messaging:20.+'
implementation 'io.intercom.android:intercom-sdk:15.9.1'
implementation 'com.google.firebase:firebase-messaging:23.1.+'
}
```

Expand All @@ -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.9.0'
implementation 'io.intercom.android:intercom-sdk-base:15.9.1'
}
```

Expand Down
8 changes: 4 additions & 4 deletions sample/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,16 +55,16 @@ dependencies {
implementation "androidx.compose.ui:ui-tooling-preview"
debugImplementation "androidx.compose.ui:ui-tooling"

implementation 'androidx.core:core-ktx:1.12.0'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.2'
implementation 'androidx.core:core-ktx:1.13.1'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.1'
implementation 'androidx.activity:activity-compose:1.7.2'
implementation("androidx.navigation:navigation-compose:2.7.6")
implementation("androidx.navigation:navigation-compose:2.7.7")

implementation "com.google.accompanist:accompanist-flowlayout:0.27.0"

implementation("androidx.datastore:datastore-preferences:1.0.0")

implementation("io.intercom.android:intercom-sdk:15.9.0")
implementation("io.intercom.android:intercom-sdk:15.9.1")
implementation("com.google.firebase:firebase-messaging:23.1.0")
}

Expand Down

0 comments on commit 218e333

Please sign in to comment.