Skip to content

Commit

Permalink
Release 13.1.0 (#327)
Browse files Browse the repository at this point in the history
* Updated Android to support Android 13

* Update CHANGELOG.md
  • Loading branch information
prithivraj authored Apr 26, 2024
1 parent 21f7561 commit dd225f2
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions Example/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
<platform name="android">
<allow-intent href="market:*" />
<preference name="android-minSdkVersion" value="22" />
<preference name="android-targetSdkVersion" value="31" />
<preference name="android-compileSdkVersion" value="31" />
<preference name="android-targetSdkVersion" value="33" />
<preference name="android-compileSdkVersion" value="33" />
<edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/application/activity[@android:name='MainActivity']">
<activity android:exported="true" />
</edit-config>
Expand Down
7 changes: 4 additions & 3 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion intercom-plugin/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 2 additions & 2 deletions intercom-plugin/src/android/intercom.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
Expand All @@ -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'
Expand Down

0 comments on commit dd225f2

Please sign in to comment.