Skip to content

Commit 624b9b1

Browse files
authored
Merge pull request #581 from intercom/raj/release_12_2_3
Release 12.2.3
2 parents 705e52d + 391db19 commit 624b9b1

File tree

3 files changed

+17
-6
lines changed

3 files changed

+17
-6
lines changed

CHANGELOG.md

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

3+
## 12.2.3
4+
###### Release Date: 5-5-2022
5+
* Fixed issue in help center where it did not obey the setting to have at most one open conversation.
6+
* Fixed issues with status bar height on Android 12.
7+
* Fixed issue with truncating expected time on the home screen.
8+
* Improved performance of push notifications
9+
* Intercom now uses Coil 2.0
10+
311
## 12.2.2
412
###### Release Date: 5-5-2022
513
Minor bug fixes

README.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ There are 2 options for installing Intercom on your Android app.
4343
Add the following dependency to your app's `build.gradle` file:
4444
```groovy
4545
dependencies {
46-
implementation 'io.intercom.android:intercom-sdk:12.2.2'
46+
implementation 'io.intercom.android:intercom-sdk:12.2.3'
4747
implementation 'com.google.firebase:firebase-messaging:20.+'
4848
}
4949
```
@@ -53,7 +53,7 @@ dependencies {
5353
If you'd rather not have push notifications in your app, you can use this dependency:
5454
```groovy
5555
dependencies {
56-
implementation 'io.intercom.android:intercom-sdk-base:12.2.2'
56+
implementation 'io.intercom.android:intercom-sdk-base:12.2.3'
5757
}
5858
```
5959

@@ -137,9 +137,10 @@ com.squareup.okhttp3:okhttp:4.9.0
137137
com.squareup.retrofit2:retrofit:2.9.0
138138
com.squareup.retrofit2:converter-gson:2.9.0
139139
com.google.code.gson:gson:2.8.6
140-
io.coil-kt:coil-base:1.4.0
141-
io.coil-kt:coil-gif:1.4.0
142-
io.coil-kt:coil-video:1.4.0
140+
io.coil-kt:coil-base:2.0.0
141+
io.coil-kt:coil-gif:2.0.0
142+
io.coil-kt:coil-video:2.0.0
143+
io.coil-kt:coil-compose:2.0.0
143144
org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.1
144145
org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.1
145146
androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.1
@@ -150,6 +151,8 @@ androidx.compose.foundation:foundation:1.1.1
150151
androidx.compose.material:material:1.1.1
151152
androidx.compose.material:material-icons-core:1.1.1
152153
androidx.activity:activity-compose:1.3.1
154+
com.google.accompanist:accompanist-systemuicontroller:0.20.3
155+
com.google.accompanist:accompanist-placeholder:0.20.3
153156
```
154157

155158
### intercom-sdk-fcm

sample/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ dependencies {
5555
implementation("androidx.navigation:navigation-compose:2.4.1")
5656
implementation("androidx.datastore:datastore-preferences:1.0.0")
5757

58-
implementation("io.intercom.android:intercom-sdk:12.2.2")
58+
implementation("io.intercom.android:intercom-sdk:12.2.3")
5959
implementation("com.google.firebase:firebase-messaging:20.2.+")
6060

6161
testImplementation 'junit:junit:4.13.2'

0 commit comments

Comments
 (0)