Skip to content

Commit

Permalink
Release 15.11.0 (#646)
Browse files Browse the repository at this point in the history
### 📱 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
```
  • Loading branch information
Br1an-Boyle authored Oct 31, 2024
1 parent 8efe2da commit 71b861f
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## 15.11.0
###### Release Date: 31-10-2024

### 📱 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
```

## 15.10.3
###### Release Date: 18-09-2024
* Bug fixes and performance improvements
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.10.3'
implementation 'io.intercom.android:intercom-sdk:15.11.0'
implementation 'com.google.firebase:firebase-messaging:23.1.+'
}
```
Expand All @@ -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.10.3'
implementation 'io.intercom.android:intercom-sdk-base:15.11.0'
}
```

Expand Down
2 changes: 1 addition & 1 deletion sample/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ dependencies {

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

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

Expand Down

0 comments on commit 71b861f

Please sign in to comment.