Skip to content

Commit

Permalink
Merge pull request #363 from urbanairship/MOBILE-1925
Browse files Browse the repository at this point in the history
Update Cordova module and Android and iOS SDK version
  • Loading branch information
Ulrico972 authored Sep 30, 2020
2 parents ef3b212 + d90b715 commit 64fda4e
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 9 deletions.
16 changes: 14 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,27 @@
# Cordova Plugin Changelog

## Version 12.0.1 - September 30, 2020

Patch release updating iOS and Android SDK versions to 14.1.2 and 14.0.1, respectively.

### iOS
- Fixes a crash related to sending In-App Messages through push notifications.
- Fixes a crash in the Airship and AirshipAutomation XCFramework.
For more details, see the [iOS CHANGELOG](https://github.com/urbanairship/ios-library/blob/14.1.2/CHANGELOG.md).

### Android
- Fixes an exception caused by too many alarms being scheduled for in-app automation message intervals on Samsung devices.
For more details, see the [Android CHANGELOG](https://github.com/urbanairship/android-library/blob/14.0.1/CHANGELOG.md).

## Version 12.0.0 - September 17, 2020

Major release for Airship Android SDK 14.0 and iOS SDK 14.1.

## Changes
### Changes
- Xcode 12 is now required.
- Requires Cordova iOS 6.1.0+, Cordova Android 9.0.0+.
- Fixed conflict with play services with Cordova Android 9.0.0.


## Version 11.0.1 - August 17, 2020
Patch release updating iOS and Android SDK versions to 13.5.4 and 13.3.2, respectively.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "urbanairship-cordova",
"version": "12.0.0",
"version": "12.0.1",
"description": "Urban Airship Cordova plugin",
"cordova": {
"id": "urbanairship-cordova",
Expand Down
10 changes: 5 additions & 5 deletions plugin.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin id="urbanairship-cordova"
version="12.0.0"
version="12.0.1"
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">

Expand Down Expand Up @@ -40,7 +40,7 @@
<config-file parent="/manifest/application" target="AndroidManifest.xml">
<meta-data
android:name="com.urbanairship.cordova.version"
android:value="12.0.0"/>
android:value="12.0.1"/>

<meta-data
android:name="com.urbanairship.autopilot"
Expand Down Expand Up @@ -142,7 +142,7 @@
</config-file>

<config-file target="*-Info.plist" parent="UACordovaPluginVersion">
<string>12.0.0</string>
<string>12.0.1</string>
</config-file>

<config-file parent="/widget" target="config.xml">
Expand Down Expand Up @@ -190,10 +190,10 @@
<!-- Airship library -->
<podspec>
<config>
<source url="https://github.com/CocoaPods/Specs.git"/>
<source url="https://cdn.cocoapods.org/"/>
</config>
<pods use-frameworks="true">
<pod name="Airship" spec="14.1.0" />
<pod name="Airship" spec="14.1.2" />
</pods>
</podspec>

Expand Down
2 changes: 1 addition & 1 deletion src/android/build-extras.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ allprojects {
}

dependencies {
def airshipVersion = "14.0.0"
def airshipVersion = "14.0.1"
implementation "com.urbanairship.android:urbanairship-fcm:$airshipVersion"
implementation "com.urbanairship.android:urbanairship-message-center:$airshipVersion"
implementation "com.urbanairship.android:urbanairship-automation:$airshipVersion"
Expand Down

0 comments on commit 64fda4e

Please sign in to comment.