Skip to content

Commit 25c1949

Browse files
authored
Merge pull request #1044 from OneSignal/rel/5.2.10
Release 5.2.10
2 parents 4833d3c + 8e10286 commit 25c1949

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "5.2.9",
2+
"version": "5.2.10",
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

+3-3
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.9">
5+
version="5.2.10">
66

77
<name>OneSignal Push Notifications</name>
88
<author>Josh Kasten, Bradley Hesse, Rodrigo Gomez-Palacio</author>
@@ -37,7 +37,7 @@
3737
<js-module src="dist/LiveActivitiesNamespace.js" name="LiveActivitiesNamespace" />
3838

3939
<platform name="android">
40-
<framework src="com.onesignal:OneSignal:5.1.26" />
40+
<framework src="com.onesignal:OneSignal:5.1.29" />
4141
<framework src="build-extras-onesignal.gradle" custom="true" type="gradleReference" />
4242
<framework src="org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.7.10" />
4343

@@ -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.9" />
88+
<pod name="OneSignalXCFramework" spec="5.2.10" />
8989
</pods>
9090
</podspec>
9191

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ public boolean setOnDidDismissInAppMessageHandler(CallbackContext callbackContex
360360

361361
public boolean init(CallbackContext callbackContext, JSONArray data) {
362362
OneSignalWrapper.setSdkType("cordova");
363-
OneSignalWrapper.setSdkVersion("050209");
363+
OneSignalWrapper.setSdkVersion("050210");
364364
try {
365365
String appId = data.getString(0);
366366
OneSignal.initWithContext(this.cordova.getActivity(), appId);

src/ios/OneSignalPush.m

+1-1
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 = @"050209";
110+
OneSignalWrapper.sdkVersion = @"050210";
111111
[OneSignal initialize:nil withLaunchOptions:launchOptions];
112112
initialLaunchFired = true;
113113
}

0 commit comments

Comments
 (0)