Skip to content

Commit 71b861f

Browse files
authored
Release 15.11.0 (#646)
### 📱 New Features * Added the ability to upload files to a conversation ### 🚀 Enhancements * Added new API `isUserLoggedIn`. This enables developers to determine if a user is currently logged in to Intercom. * Added new API `fetchLoggedInUserAttributes`. This enables developers to retrieve the details of the currently logged in user. ### 🐛 Bug Fixes - Fixed some small UI bugs - Fixed a crash with the following stacktrace: ``` at dalvik.system.VMStack.getThreadStackTrace(VMStack.java) at java.lang.Thread.getStackTrace(Thread.java:1736) at d00.d.e0 at d00.d.v at io.intercom.android.sdk.m5.errorReporter.SentryErrorReporter.trackActiveUser ```
1 parent 8efe2da commit 71b861f

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

CHANGELOG.md

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

3+
## 15.11.0
4+
###### Release Date: 31-10-2024
5+
6+
### 📱 New Features
7+
* Added the ability to upload files to a conversation
8+
9+
### 🚀 Enhancements
10+
* Added new API `isUserLoggedIn`. This enables developers to determine if a user is currently logged in to Intercom.
11+
* Added new API `fetchLoggedInUserAttributes`. This enables developers to retrieve the details of the currently logged in user.
12+
13+
### 🐛 Bug Fixes
14+
- Fixed some small UI bugs
15+
- Fixed a crash with the following stacktrace:
16+
```
17+
at dalvik.system.VMStack.getThreadStackTrace(VMStack.java)
18+
at java.lang.Thread.getStackTrace(Thread.java:1736)
19+
at d00.d.e0
20+
at d00.d.v
21+
at io.intercom.android.sdk.m5.errorReporter.SentryErrorReporter.trackActiveUser
22+
```
23+
324
## 15.10.3
425
###### Release Date: 18-09-2024
526
* Bug fixes and performance improvements

README.md

Lines changed: 2 additions & 2 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.10.3'
42+
implementation 'io.intercom.android:intercom-sdk:15.11.0'
4343
implementation 'com.google.firebase:firebase-messaging:23.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.10.3'
52+
implementation 'io.intercom.android:intercom-sdk-base:15.11.0'
5353
}
5454
```
5555

sample/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ dependencies {
6464

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

67-
implementation("io.intercom.android:intercom-sdk:15.10.3")
67+
implementation("io.intercom.android:intercom-sdk:15.11.0")
6868
implementation("com.google.firebase:firebase-messaging:23.1.0")
6969
}
7070

0 commit comments

Comments
 (0)