diff --git a/CHANGELOG.md b/CHANGELOG.md index 510ab80..65693b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,9 @@ # Intercom for Cordova/PhoneGap -## 13.0.0 (2022-09-13) +## 13.10.0 (2024-04-26) 🚀 Enhancements * Added support for iOS 16. +* Added support for Android 13 * Xcode 14 is required to build v13.0.0 * We have deprecated and removed an number of methods in this release. Please see our [v13.0.0 Migration Guide](https://developers.intercom.com/installing-intercom/docs/cordova-migrating-to-v1300) for further details on how to migrate to this version. * Added new callback functionality to our `login`API methods. See our [Installation](https://developers.intercom.com/installing-intercom/docs/cordova-phonegap-installation) guide for usage details. diff --git a/Example/config.xml b/Example/config.xml index 0e106bb..1a2e53e 100644 --- a/Example/config.xml +++ b/Example/config.xml @@ -18,8 +18,8 @@ - - + + diff --git a/circle.yml b/circle.yml index 29a4c21..519111b 100644 --- a/circle.yml +++ b/circle.yml @@ -3,7 +3,8 @@ version: 2 jobs: ios: macos: - xcode: "13.0.0" + xcode: "13.4.1" + resource_class: macos.x86.medium.gen2 shell: /bin/bash --login -eo pipefail steps: - checkout @@ -12,10 +13,10 @@ jobs: command: command -v node || brew install node - run: name: Install Cordova - command: npm install -g cordova@9.0.0 + command: npm install -g cordova - run: name: Add iOS platform - command: cd Example && cordova platform add ios + command: cd Example && cordova platform add ios@latest - run: name: Install intercom plugin command: cd Example && cordova plugin add ../intercom-plugin diff --git a/intercom-plugin/package.json b/intercom-plugin/package.json index f23fb0e..07dd3b8 100644 --- a/intercom-plugin/package.json +++ b/intercom-plugin/package.json @@ -1,6 +1,6 @@ { "name": "cordova-plugin-intercom", - "version": "13.0.0", + "version": "13.1.0", "description": "Official Cordova/PhoneGap plugin for Intercom", "cordova": { "id": "cordova-plugin-intercom", diff --git a/intercom-plugin/src/android/intercom.gradle b/intercom-plugin/src/android/intercom.gradle index 5d84d45..77922a0 100644 --- a/intercom-plugin/src/android/intercom.gradle +++ b/intercom-plugin/src/android/intercom.gradle @@ -14,7 +14,7 @@ buildscript { maven { url 'https://maven.google.com' } } dependencies { - classpath 'com.android.tools.build:gradle:4.0.0' + classpath 'com.android.tools.build:gradle:8.0.2' if (pushType == 'fcm') { classpath 'com.google.gms:google-services:4.3.3' } @@ -28,7 +28,7 @@ repositories { } dependencies { - implementation 'io.intercom.android:intercom-sdk-base:12.4.1' + implementation 'io.intercom.android:intercom-sdk-base:14.0.5' implementation 'com.google.code.gson:gson:2.8.6' implementation 'com.intercom:twig:1.3.0' implementation 'org.jetbrains:annotations:13.0'