From 64b75d4bd262e5f0dff1b7d641ce5d9ab37b7cc9 Mon Sep 17 00:00:00 2001 From: Dheepakraj Selvakumar Date: Wed, 1 Jul 2026 12:01:49 +0100 Subject: [PATCH 1/2] =?UTF-8?q?Release=2016.4.0=20=E2=80=94=20Update=20Int?= =?UTF-8?q?ercom=20Android=20SDK=20to=2018.3.2=20and=20iOS=20SDK=20to=2019?= =?UTF-8?q?.6.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- CHANGELOG.md | 6 ++++++ Example/package-lock.json | 2 +- README.md | 2 +- intercom-plugin/package-lock.json | 4 ++-- intercom-plugin/package.json | 2 +- intercom-plugin/plugin.xml | 4 ++-- intercom-plugin/src/android/IntercomBridge.java | 2 +- intercom-plugin/src/android/IntercomInitProvider.java | 2 +- intercom-plugin/src/android/intercom.gradle | 4 ++-- intercom-plugin/src/ios/IntercomBridge.m | 2 +- 10 files changed, 18 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 08f318f..3307adc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Intercom for Cordova/PhoneGap +## 16.4.0 (2026-07-01) + +🚀 Enhancements +* Updated Intercom Android SDK to 18.3.2 +* Updated Intercom iOS SDK to 19.6.4 + ## 16.3.0 (2026-06-23) 🚀 Enhancements diff --git a/Example/package-lock.json b/Example/package-lock.json index 8386be5..426423d 100644 --- a/Example/package-lock.json +++ b/Example/package-lock.json @@ -17,7 +17,7 @@ }, "../intercom-plugin": { "name": "cordova-plugin-intercom", - "version": "16.3.0", + "version": "16.4.0", "dev": true, "license": "MIT License", "dependencies": { diff --git a/README.md b/README.md index 24640a2..9ec9769 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ cordova plugin add cordova-plugin-intercom To add the plugin to your PhoneGap app, add the following to your `config.xml`: ```xml - + ``` ### Requirements diff --git a/intercom-plugin/package-lock.json b/intercom-plugin/package-lock.json index 1f136b9..b6f8931 100644 --- a/intercom-plugin/package-lock.json +++ b/intercom-plugin/package-lock.json @@ -1,12 +1,12 @@ { "name": "cordova-plugin-intercom", - "version": "16.3.0", + "version": "16.4.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "cordova-plugin-intercom", - "version": "16.3.0", + "version": "16.4.0", "license": "MIT License", "dependencies": { "q": "^1.5.1" diff --git a/intercom-plugin/package.json b/intercom-plugin/package.json index f6a5042..0a34e04 100644 --- a/intercom-plugin/package.json +++ b/intercom-plugin/package.json @@ -1,6 +1,6 @@ { "name": "cordova-plugin-intercom", - "version": "16.3.0", + "version": "16.4.0", "description": "Official Cordova plugin for Intercom", "author": "Intercom", "license": "MIT License", diff --git a/intercom-plugin/plugin.xml b/intercom-plugin/plugin.xml index 9c8f6c8..c2b7025 100644 --- a/intercom-plugin/plugin.xml +++ b/intercom-plugin/plugin.xml @@ -1,5 +1,5 @@ - + Intercom Intercom MIT License @@ -68,7 +68,7 @@ - + diff --git a/intercom-plugin/src/android/IntercomBridge.java b/intercom-plugin/src/android/IntercomBridge.java index 2be560a..c4270c0 100644 --- a/intercom-plugin/src/android/IntercomBridge.java +++ b/intercom-plugin/src/android/IntercomBridge.java @@ -77,7 +77,7 @@ private void setUpIntercom() { try { Context context = cordova.getActivity().getApplicationContext(); - CordovaHeaderInterceptor.setCordovaVersion(context, "16.3.0"); + CordovaHeaderInterceptor.setCordovaVersion(context, "16.4.0"); //Get app credentials from config.xml or the app bundle if they can't be found String apiKey = preferences.getString("intercom-android-api-key", ""); diff --git a/intercom-plugin/src/android/IntercomInitProvider.java b/intercom-plugin/src/android/IntercomInitProvider.java index f6b2d43..f26ee0c 100644 --- a/intercom-plugin/src/android/IntercomInitProvider.java +++ b/intercom-plugin/src/android/IntercomInitProvider.java @@ -77,7 +77,7 @@ private void initializeIntercom(Context context) { return; } - CordovaHeaderInterceptor.setCordovaVersion(context, "16.3.0"); + CordovaHeaderInterceptor.setCordovaVersion(context, "16.4.0"); Intercom.initialize((Application) context.getApplicationContext(), apiKey, appId); Log.d(TAG, "IntercomInitProvider: Intercom initialized successfully"); diff --git a/intercom-plugin/src/android/intercom.gradle b/intercom-plugin/src/android/intercom.gradle index 46e9f0b..208bdfd 100644 --- a/intercom-plugin/src/android/intercom.gradle +++ b/intercom-plugin/src/android/intercom.gradle @@ -32,14 +32,14 @@ repositories { } dependencies { - implementation 'io.intercom.android:intercom-sdk-base:18.3.1' + implementation 'io.intercom.android:intercom-sdk-base:18.3.2' implementation 'com.google.code.gson:gson:2.8.6' implementation 'com.intercom:twig:1.3.0' implementation 'org.jetbrains:annotations:13.0' implementation 'com.squareup.okhttp3:okhttp:4.9.0' if (pushType == 'fcm' || pushType == 'fcm-without-build-plugin') { implementation 'com.google.firebase:firebase-messaging:20.+' - implementation 'io.intercom.android:intercom-sdk-fcm:18.3.1' + implementation 'io.intercom.android:intercom-sdk-fcm:18.3.2' } } diff --git a/intercom-plugin/src/ios/IntercomBridge.m b/intercom-plugin/src/ios/IntercomBridge.m index e362d6b..030f546 100644 --- a/intercom-plugin/src/ios/IntercomBridge.m +++ b/intercom-plugin/src/ios/IntercomBridge.m @@ -16,7 +16,7 @@ @implementation IntercomBridge : CDVPlugin #pragma mark - Intercom Initialisation - (void)pluginInitialize { - [Intercom setCordovaVersion:@"16.3.0"]; + [Intercom setCordovaVersion:@"16.4.0"]; #ifdef DEBUG [Intercom enableLogging]; #endif From 6cf6f18e8c5d40eb218993f943d811a2547f9aab Mon Sep 17 00:00:00 2001 From: Dheepakraj Selvakumar Date: Wed, 1 Jul 2026 12:14:11 +0100 Subject: [PATCH 2/2] Fix release version: 16.3.1 instead of 16.4.0 Both underlying SDK bumps are patch releases (Android 18.3.1 -> 18.3.2, iOS 19.6.3 -> 19.6.4), matching the 15.0.0 -> 15.0.1 precedent where a patch-only SDK bump got a patch cordova version bump. Minor bumps (16.1.0-16.3.0) coincided with the Android SDK's own minor version changing, which isn't the case here. Co-Authored-By: Claude Sonnet 4.6 --- CHANGELOG.md | 2 +- Example/package-lock.json | 2 +- README.md | 2 +- intercom-plugin/package-lock.json | 4 ++-- intercom-plugin/package.json | 2 +- intercom-plugin/plugin.xml | 2 +- intercom-plugin/src/android/IntercomBridge.java | 2 +- intercom-plugin/src/android/IntercomInitProvider.java | 2 +- intercom-plugin/src/ios/IntercomBridge.m | 2 +- 9 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3307adc..3b3b471 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Intercom for Cordova/PhoneGap -## 16.4.0 (2026-07-01) +## 16.3.1 (2026-07-01) 🚀 Enhancements * Updated Intercom Android SDK to 18.3.2 diff --git a/Example/package-lock.json b/Example/package-lock.json index 426423d..ef75fed 100644 --- a/Example/package-lock.json +++ b/Example/package-lock.json @@ -17,7 +17,7 @@ }, "../intercom-plugin": { "name": "cordova-plugin-intercom", - "version": "16.4.0", + "version": "16.3.1", "dev": true, "license": "MIT License", "dependencies": { diff --git a/README.md b/README.md index 9ec9769..2a0b3a9 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ cordova plugin add cordova-plugin-intercom To add the plugin to your PhoneGap app, add the following to your `config.xml`: ```xml - + ``` ### Requirements diff --git a/intercom-plugin/package-lock.json b/intercom-plugin/package-lock.json index b6f8931..fd9b1c8 100644 --- a/intercom-plugin/package-lock.json +++ b/intercom-plugin/package-lock.json @@ -1,12 +1,12 @@ { "name": "cordova-plugin-intercom", - "version": "16.4.0", + "version": "16.3.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "cordova-plugin-intercom", - "version": "16.4.0", + "version": "16.3.1", "license": "MIT License", "dependencies": { "q": "^1.5.1" diff --git a/intercom-plugin/package.json b/intercom-plugin/package.json index 0a34e04..616d179 100644 --- a/intercom-plugin/package.json +++ b/intercom-plugin/package.json @@ -1,6 +1,6 @@ { "name": "cordova-plugin-intercom", - "version": "16.4.0", + "version": "16.3.1", "description": "Official Cordova plugin for Intercom", "author": "Intercom", "license": "MIT License", diff --git a/intercom-plugin/plugin.xml b/intercom-plugin/plugin.xml index c2b7025..8e6d661 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 c4270c0..cd91530 100644 --- a/intercom-plugin/src/android/IntercomBridge.java +++ b/intercom-plugin/src/android/IntercomBridge.java @@ -77,7 +77,7 @@ private void setUpIntercom() { try { Context context = cordova.getActivity().getApplicationContext(); - CordovaHeaderInterceptor.setCordovaVersion(context, "16.4.0"); + CordovaHeaderInterceptor.setCordovaVersion(context, "16.3.1"); //Get app credentials from config.xml or the app bundle if they can't be found String apiKey = preferences.getString("intercom-android-api-key", ""); diff --git a/intercom-plugin/src/android/IntercomInitProvider.java b/intercom-plugin/src/android/IntercomInitProvider.java index f26ee0c..097acbb 100644 --- a/intercom-plugin/src/android/IntercomInitProvider.java +++ b/intercom-plugin/src/android/IntercomInitProvider.java @@ -77,7 +77,7 @@ private void initializeIntercom(Context context) { return; } - CordovaHeaderInterceptor.setCordovaVersion(context, "16.4.0"); + CordovaHeaderInterceptor.setCordovaVersion(context, "16.3.1"); Intercom.initialize((Application) context.getApplicationContext(), apiKey, appId); Log.d(TAG, "IntercomInitProvider: Intercom initialized successfully"); diff --git a/intercom-plugin/src/ios/IntercomBridge.m b/intercom-plugin/src/ios/IntercomBridge.m index 030f546..77eb786 100644 --- a/intercom-plugin/src/ios/IntercomBridge.m +++ b/intercom-plugin/src/ios/IntercomBridge.m @@ -16,7 +16,7 @@ @implementation IntercomBridge : CDVPlugin #pragma mark - Intercom Initialisation - (void)pluginInitialize { - [Intercom setCordovaVersion:@"16.4.0"]; + [Intercom setCordovaVersion:@"16.3.1"]; #ifdef DEBUG [Intercom enableLogging]; #endif