Skip to content

Commit 2ce3ea9

Browse files
authored
Release 15.0.1 (#351)
1 parent d1f3876 commit 2ce3ea9

8 files changed

Lines changed: 16 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Intercom for Cordova/PhoneGap
22

3+
## 15.0.1 (2026-03-12)
4+
5+
🚀 Enhancements
6+
* Updated Intercom Android SDK to 17.4.7
7+
* Updated Intercom iOS SDK to 19.5.4
8+
39
## 15.0.0 (2026-02-17)
410

511
🚀 Enhancements

Example/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@ cordova plugin add cordova-plugin-intercom
4545

4646
To add the plugin to your PhoneGap app, add the following to your `config.xml`:
4747
```xml
48-
<plugin name="cordova-plugin-intercom" version="15.0.0" />
48+
<plugin name="cordova-plugin-intercom" version="15.0.1" />
4949
```
5050

5151
### Requirements
5252
| Name | Required Version |
5353
| ----------- | ----------- |
5454
| cordova | 12.0.0 |
5555
| cordova-android | 14.0.0 |
56-
| cordova-ios | 7.1.0 |
56+
| cordova-ios | 7.1.1 |
5757
| iOS SDK | 15.0.0 |
5858
| Android SDK | 35 |
5959

intercom-plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cordova-plugin-intercom",
3-
"version": "15.0.0",
3+
"version": "15.0.1",
44
"description": "Official Cordova plugin for Intercom",
55
"author": "Intercom",
66
"license": "MIT License",

intercom-plugin/plugin.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version='1.0' encoding='utf-8'?>
2-
<plugin id="cordova-plugin-intercom" version="15.0.0" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
2+
<plugin id="cordova-plugin-intercom" version="15.0.1" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
33
<name>Intercom</name>
44
<author>Intercom</author>
55
<license>MIT License</license>
@@ -68,7 +68,7 @@
6868
<source url="https://cdn.cocoapods.org/"/>
6969
</config>
7070
<pods use-frameworks="true">
71-
<pod name="Intercom" spec="~> 19.5.1" />
71+
<pod name="Intercom" spec="~> 19.5.4" />
7272
</pods>
7373
</podspec>
7474
</platform>

intercom-plugin/src/android/IntercomBridge.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ private void setUpIntercom() {
7979
try {
8080
Context context = cordova.getActivity().getApplicationContext();
8181

82-
CordovaHeaderInterceptor.setCordovaVersion(context, "15.0.0");
82+
CordovaHeaderInterceptor.setCordovaVersion(context, "15.0.1");
8383

8484
switch (IntercomPushManager.getInstalledModuleType()) {
8585
case FCM: {

intercom-plugin/src/android/intercom.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ repositories {
3232
}
3333

3434
dependencies {
35-
implementation 'io.intercom.android:intercom-sdk-base:17.4.4'
35+
implementation 'io.intercom.android:intercom-sdk-base:17.4.7'
3636
implementation 'com.google.code.gson:gson:2.8.6'
3737
implementation 'com.intercom:twig:1.3.0'
3838
implementation 'org.jetbrains:annotations:13.0'
3939
implementation 'com.squareup.okhttp3:okhttp:4.9.0'
4040
if (pushType == 'fcm' || pushType == 'fcm-without-build-plugin') {
4141
implementation 'com.google.firebase:firebase-messaging:20.+'
42-
implementation 'io.intercom.android:intercom-sdk-fcm:17.4.4'
42+
implementation 'io.intercom.android:intercom-sdk-fcm:17.4.7'
4343
}
4444
}
4545

intercom-plugin/src/ios/IntercomBridge.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ @implementation IntercomBridge : CDVPlugin
1616
#pragma mark - Intercom Initialisation
1717

1818
- (void)pluginInitialize {
19-
[Intercom setCordovaVersion:@"15.0.0"];
19+
[Intercom setCordovaVersion:@"15.0.1"];
2020
#ifdef DEBUG
2121
[Intercom enableLogging];
2222
#endif

0 commit comments

Comments
 (0)