Skip to content

Commit

Permalink
Merge pull request #419 from urbanairship/MOBILE-4058
Browse files Browse the repository at this point in the history
[MOBILE-4058] remove play services error message
  • Loading branch information
Ulrico972 committed Jan 11, 2024
2 parents ec6c861 + a235c5a commit c3e07bd
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 22 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Cordova Plugin Changelog

## Version 14.11.0 - January 11, 2024
Minor release that updates iOS SDK to 16.12.5 and removes an error message on Huawei devices that have the Play Store installed.

### Changes
- Updated iOS Airship SDK to 16.12.5.
- Removed an error message on Huawei devices that have the Play Store installed.

## Version 14.10.1 - June 23, 2023
Patch release that fixes a crash if takeOff is called with invalid config on Android.

Expand Down
2 changes: 1 addition & 1 deletion urbanairship-accengage-cordova/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "urbanairship-accengage-cordova",
"version": "14.10.1",
"version": "14.11.0",
"description": "Urban Airship-Accengage Cordova plugin",
"cordova": {
"id": "urbanairship-accengage-cordova",
Expand Down
8 changes: 4 additions & 4 deletions urbanairship-accengage-cordova/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-accengage-cordova"
version="14.10.1"
version="14.11.0"
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">

Expand All @@ -16,13 +16,13 @@
<engine name="cordova" version=">=9.0.1"/>
</engines>

<dependency id="urbanairship-cordova" version="14.10.1"/>
<dependency id="urbanairship-cordova" version="14.11.0"/>

<!-- ios -->
<platform name="ios">

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

<!-- Airship Accengage Module -->
Expand All @@ -31,7 +31,7 @@
<source url="https://github.com/CocoaPods/Specs.git"/>
</config>
<pods use-frameworks="true">
<pod name="Airship/Accengage" spec="16.12.1" />
<pod name="Airship/Accengage" spec="16.12.5" />
</pods>
</podspec>

Expand Down
2 changes: 1 addition & 1 deletion urbanairship-cordova/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "urbanairship-cordova",
"version": "14.10.1",
"version": "14.11.0",
"description": "Urban Airship Cordova plugin",
"cordova": {
"id": "urbanairship-cordova",
Expand Down
16 changes: 8 additions & 8 deletions urbanairship-cordova/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="14.10.1"
version="14.11.0"
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="14.10.1"/>
android:value="14.11.0"/>

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

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

<config-file parent="/widget" target="config.xml">
Expand Down Expand Up @@ -198,11 +198,11 @@
<source url="https://cdn.cocoapods.org/"/>
</config>
<pods use-frameworks="true">
<pod name="Airship/Core" spec="16.12.1" />
<pod name="Airship/MessageCenter" spec="16.12.1" />
<pod name="Airship/Automation" spec="16.12.1" />
<pod name="Airship/ExtendedActions" spec="16.12.1" />
<pod name="Airship/PreferenceCenter" spec="16.12.1" />
<pod name="Airship/Core" spec="16.12.5" />
<pod name="Airship/MessageCenter" spec="16.12.5" />
<pod name="Airship/Automation" spec="16.12.5" />
<pod name="Airship/ExtendedActions" spec="16.12.5" />
<pod name="Airship/PreferenceCenter" spec="16.12.5" />
</pods>
</podspec>

Expand Down
5 changes: 0 additions & 5 deletions urbanairship-cordova/src/android/UAirshipPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -147,11 +147,6 @@ public void onResume(boolean multitasking) {
super.onResume(multitasking);

if (pluginManager.isAirshipAvailable()) {
// Handle any Google Play services errors
if (PlayServicesUtils.isGooglePlayStoreAvailable(cordova.getActivity())) {
PlayServicesUtils.handleAnyPlayServicesError(cordova.getActivity());
}

pluginManager.checkOptInStatus();
}
}
Expand Down
2 changes: 1 addition & 1 deletion urbanairship-hms-cordova/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "urbanairship-hms-cordova",
"version": "14.10.1",
"version": "14.11.0",
"description": "Urban Airship HMS Cordova plugin",
"cordova": {
"id": "urbanairship-hms-cordova",
Expand Down
4 changes: 2 additions & 2 deletions urbanairship-hms-cordova/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-hms-cordova"
version="14.10.1"
version="14.11.0"
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">

Expand All @@ -15,7 +15,7 @@
<engine name="cordova" version=">=9.0.1"/>
</engines>

<dependency id="urbanairship-cordova" version="14.10.1"/>
<dependency id="urbanairship-cordova" version="14.11.0"/>

<!-- android -->
<platform name="android">
Expand Down

0 comments on commit c3e07bd

Please sign in to comment.