Skip to content

Commit

Permalink
Merge pull request #1709 from OneSignal/rel/5.2.0
Browse files Browse the repository at this point in the history
Release 5.2.0
  • Loading branch information
nan-li committed May 16, 2024
2 parents afd1676 + b736283 commit 1aadf06
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ dependencies {

// api is used instead of implementation so the parent :app project can access any of the OneSignal Java
// classes if needed. Such as com.onesignal.NotificationExtenderService
api 'com.onesignal:OneSignal:5.1.10'
api 'com.onesignal:OneSignal:5.1.13'

testImplementation 'junit:junit:4.12'
}
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ public void onCatalystInstanceDestroy() {
public void initialize(String appId) {
Context context = mReactApplicationContext.getCurrentActivity();
OneSignalWrapper.setSdkType("reactnative");
OneSignalWrapper.setSdkVersion("050103");
OneSignalWrapper.setSdkVersion("050200");

if (oneSignalInitDone) {
Log.e("OneSignal", "Already initialized the OneSignal React-Native SDK");
Expand Down
2 changes: 1 addition & 1 deletion ios/RCTOneSignal/RCTOneSignal.m
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ - (void)initOneSignal:(NSDictionary *)launchOptions {
return;

OneSignalWrapper.sdkType = @"reactnative";
OneSignalWrapper.sdkVersion = @"050103";
OneSignalWrapper.sdkVersion = @"050200";
// initialize the SDK with a nil app ID so cold start click listeners can be triggered
[OneSignal initialize:nil withLaunchOptions:launchOptions];
didInitialize = true;
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": "react-native-onesignal",
"version": "5.1.3",
"version": "5.2.0",
"description": "React Native OneSignal SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down

0 comments on commit 1aadf06

Please sign in to comment.