Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Version 6.0.0
24-10-2019
* Android API level 21 (v5 - Lollipop) is now the minimum version of Android that is supported by the Intercom Android SDK.

## Version 5.5.1
03-10-2019
* In this release we fixed a number of bugs:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Engage customers with email, push, and in‑app messages and support them with a

<img src="https://user-images.githubusercontent.com/2615468/42951429-0e2d7d54-8b6e-11e8-9d17-ad6460120aac.png">

Intercom for Android supports API 15 and above.
Intercom for Android supports API 21 and above.

## Installation
There are 2 options for installing Intercom on your Android app.
Expand All @@ -14,7 +14,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:5.+'
implementation 'io.intercom.android:intercom-sdk:6.+'
implementation 'com.google.firebase:firebase-messaging:17.+'
}
```
Expand All @@ -24,7 +24,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:5.+'
implementation 'io.intercom.android:intercom-sdk-base:6.+'
}
```

Expand Down
Binary file not shown.
Binary file not shown.
6 changes: 3 additions & 3 deletions samples/fcm-sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ android {

defaultConfig {
applicationId "com.intercom.sample"
minSdkVersion 15
minSdkVersion 21
targetSdkVersion 29
versionCode 1
versionName "1.0"
Expand All @@ -19,8 +19,8 @@ android {
}

dependencies {
implementation 'io.intercom.android:intercom-sdk-base:5.+'
implementation 'io.intercom.android:intercom-sdk-fcm:5.+'
implementation 'io.intercom.android:intercom-sdk-base:6.+'
implementation 'io.intercom.android:intercom-sdk-fcm:6.+'
implementation 'com.google.firebase:firebase-messaging:17.6.0'
}

Expand Down