Skip to content

Commit 886508f

Browse files
authored
Merge pull request #1056 from OneSignal/rel/5.2.13
Release 5.2.13
2 parents a022a52 + 8bb032c commit 886508f

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "5.2.12",
2+
"version": "5.2.13",
33
"name": "onesignal-cordova-plugin",
44
"cordova_name": "OneSignal Push Notifications",
55
"description": "OneSignal is a high volume Push Notification service for mobile apps. In addition to basic notification delivery, OneSignal also provides tools to localize, target, schedule, and automate notifications that you send.",

plugin.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
33
xmlns:android="http://schemas.android.com/apk/res/android"
44
id="onesignal-cordova-plugin"
5-
version="5.2.12">
5+
version="5.2.13">
66

77
<name>OneSignal Push Notifications</name>
88
<author>Josh Kasten, Bradley Hesse, Rodrigo Gomez-Palacio</author>
@@ -85,7 +85,7 @@
8585
<source url="https://cdn.cocoapods.org/"/>
8686
</config>
8787
<pods use-frameworks="true">
88-
<pod name="OneSignalXCFramework" spec="5.2.11" />
88+
<pod name="OneSignalXCFramework" spec="5.2.10" />
8989
</pods>
9090
</podspec>
9191

src/android/com/onesignal/cordova/OneSignalPush.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ public boolean init(CallbackContext callbackContext, JSONArray data) {
364364

365365
initDone = true;
366366
OneSignalWrapper.setSdkType("cordova");
367-
OneSignalWrapper.setSdkVersion("050212");
367+
OneSignalWrapper.setSdkVersion("050213");
368368
try {
369369
String appId = data.getString(0);
370370
OneSignal.initWithContext(this.cordova.getActivity(), appId);

src/ios/OneSignalPush.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ void processNotificationClicked(OSNotificationClickEvent* event) {
107107

108108
void initOneSignalObject(NSDictionary* launchOptions) {
109109
OneSignalWrapper.sdkType = @"cordova";
110-
OneSignalWrapper.sdkVersion = @"050212";
110+
OneSignalWrapper.sdkVersion = @"050213";
111111
[OneSignal initialize:nil withLaunchOptions:launchOptions];
112112
}
113113

0 commit comments

Comments
 (0)