diff --git a/CHANGELOG.md b/CHANGELOG.md
index dbf221d..f58fe50 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,10 +1,14 @@
# Intercom for Cordova/PhoneGap
+## 7.1.1 (2019-09-05)
+
+* * The Intercom Cordova plugin has been updated to use v5.4.1 of the Intercom Android SDK as the latest version. This is because v5.5.0 of the Intercom Android SDK targets Android 10, which is currently unsupported by Cordova.
+
## 7.1.0 (2019-07-17)
* Updated to cordova-android 8.0.0 and cordova-ios 5.0.0
* Removed GCM as [Google has removed GCM](https://developers.google.com/cloud-messaging/faq)
-* Updated Firebase version
+* Updated Firebase version
* Updated our Example app to use the newer versions of Cordova
* Now using the latest versions of the Intercom [Android SDK](https://github.com/intercom/intercom-android/releases) and [iOS SDK](https://github.com/intercom/intercom-android/releases) with support for Custom Bots!
@@ -30,7 +34,7 @@ The new Intercom mobile SDK brings the Messenger Home to your mobile application
* `displayConversationsList` - Use `displayMessenger` instead.
-These deprecated methods will still work, but will be removed in a future release.
+These deprecated methods will still work, but will be removed in a future release.
## 6.0.0 (2018-06-12)
diff --git a/README.md b/README.md
index 5b74769..d5091f5 100644
--- a/README.md
+++ b/README.md
@@ -22,7 +22,7 @@ cordova plugin add cordova-plugin-intercom
To add the plugin to your PhoneGap app, add the following to your `config.xml`:
```xml
-
+
```
### Ionic
diff --git a/intercom-plugin/package.json b/intercom-plugin/package.json
index dece6b1..7de418f 100644
--- a/intercom-plugin/package.json
+++ b/intercom-plugin/package.json
@@ -1,6 +1,6 @@
{
"name": "cordova-plugin-intercom",
- "version": "7.1.0",
+ "version": "7.1.1",
"description": "Official Cordova/PhoneGap plugin for Intercom",
"cordova": {
"id": "cordova-plugin-intercom",
diff --git a/intercom-plugin/plugin.xml b/intercom-plugin/plugin.xml
index a8c56ab..8eed6d1 100644
--- a/intercom-plugin/plugin.xml
+++ b/intercom-plugin/plugin.xml
@@ -1,5 +1,5 @@
-
+
Intercom
Intercom
MIT License
diff --git a/intercom-plugin/src/android/IntercomBridge.java b/intercom-plugin/src/android/IntercomBridge.java
index 812008e..56f7990 100644
--- a/intercom-plugin/src/android/IntercomBridge.java
+++ b/intercom-plugin/src/android/IntercomBridge.java
@@ -60,7 +60,7 @@ private void setUpIntercom() {
try {
Context context = cordova.getActivity().getApplicationContext();
- CordovaHeaderInterceptor.setCordovaVersion(context, "7.1.0");
+ CordovaHeaderInterceptor.setCordovaVersion(context, "7.1.1");
switch (IntercomPushManager.getInstalledModuleType()) {
case FCM: {
diff --git a/intercom-plugin/src/ios/IntercomBridge.m b/intercom-plugin/src/ios/IntercomBridge.m
index 0041850..8efcbe5 100644
--- a/intercom-plugin/src/ios/IntercomBridge.m
+++ b/intercom-plugin/src/ios/IntercomBridge.m
@@ -9,7 +9,7 @@ + (void)setCordovaVersion:(NSString *)v;
@implementation IntercomBridge : CDVPlugin
- (void)pluginInitialize {
- [Intercom setCordovaVersion:@"7.1.0"];
+ [Intercom setCordovaVersion:@"7.1.1"];
#ifdef DEBUG
[Intercom enableLogging];
#endif