Skip to content

Commit 559b2ce

Browse files
authored
Release 15.16.1 (#660)
1 parent d6e681f commit 559b2ce

File tree

3 files changed

+23
-5
lines changed

3 files changed

+23
-5
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## 15.16.1
4+
###### Release Date: 02-05-2025
5+
6+
### 🚀 Enhancements
7+
* Added support for conversations merged across channels and users
8+
* Added support for setting a custom backstack item — You can now call `Intercom.pushBackStackActivity()` and set an activity you'd like as a backstack for Intercom push notifications
9+
10+
### 🐛 Bug Fixes
11+
* Fixed an issue where Notes and Posts weren't showing in full
12+
* Fixed IllegalArgumentException: Max number of dynamic shortcuts exceeded
13+
* Fixed crashes on push notifications
14+
15+
### 👉 Dependency updates
16+
* Compose BOM: Updated to 1.8.0 (via BOM 2025.04.00)
17+
* Sentry: Updated to 8.11.1
18+
* Gson: Updated to 2.13.0
19+
* AndroidX ExifInterface: Updated to 1.4.1
20+
321
## 15.16.0
422
###### Release Date: 11-04-2025
523

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ There are 2 options for installing Intercom on your Android app.
3939
Add the following dependency to your app's `build.gradle` file:
4040
```groovy
4141
dependencies {
42-
implementation 'io.intercom.android:intercom-sdk:15.16.0'
42+
implementation 'io.intercom.android:intercom-sdk:15.16.1'
4343
implementation 'com.google.firebase:firebase-messaging:24.1.+'
4444
}
4545
```
@@ -49,7 +49,7 @@ dependencies {
4949
If you'd rather not have push notifications in your app, you can use this dependency:
5050
```groovy
5151
dependencies {
52-
implementation 'io.intercom.android:intercom-sdk-base:15.16.0'
52+
implementation 'io.intercom.android:intercom-sdk-base:15.16.1'
5353
}
5454
```
5555

@@ -132,5 +132,5 @@ You can also include [VIBRATE](http://developer.android.com/reference/android/Ma
132132
### Transitive Dependencies
133133

134134
Intercom Android SDK transitively depends on the above libraries. If your app is using any one of these libraries, they should at least be on the same major version that Intercom SDK is using.
135-
When there are two versions of a library at build time, Gradle automatically picks the newer version.
135+
When there are two versions of a library at build time, Gradle automatically picks the newer version.
136136
This means if you are currently using say Glide 3.x, your app would automatically get Glide 4.x after including Intercom.

sample/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ android {
4949

5050
dependencies {
5151
// Compose
52-
def composeBom = platform("androidx.compose:compose-bom:2025.03.00")
52+
def composeBom = platform("androidx.compose:compose-bom:2025.04.00")
5353
implementation composeBom
5454
implementation "androidx.compose.ui:ui"
5555
implementation "androidx.compose.material3:material3"
@@ -65,6 +65,6 @@ dependencies {
6565

6666
implementation("androidx.datastore:datastore-preferences:1.1.3")
6767

68-
implementation("io.intercom.android:intercom-sdk:15.16.0")
68+
implementation("io.intercom.android:intercom-sdk:15.16.1")
6969
implementation("com.google.firebase:firebase-messaging:24.1.0")
7070
}

0 commit comments

Comments
 (0)