Skip to content

Commit

Permalink
Merge pull request #37 from radarlabs/bump-to-3.9.1
Browse files Browse the repository at this point in the history
bump to 3.9.1
  • Loading branch information
KennyHuRadar authored Apr 8, 2024
2 parents 78d0ad1 + e6589f8 commit 5de2ce8
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion example/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions plugin/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Cordova plugin for Radar, the leading geofencing and location tracking platform",
"homepage": "https://radar.com",
"license": "Apache-2.0",
"version": "3.9.0",
"version": "3.9.1",
"main": "www/Radar.js",
"devDependencies": {
"babel-eslint": "^10.0.1",
Expand Down
4 changes: 2 additions & 2 deletions plugin/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</config-file>

<source-file src="src/android/src/main/java/io/radar/cordova/RadarCordovaPlugin.java" target-dir="src/android/src/main/java/io/radar/cordova"/>
<framework src="io.radar:sdk:3.9.7"/>
<framework src="io.radar:sdk:3.9.8"/>

</platform>
<platform name="ios">
Expand Down Expand Up @@ -56,7 +56,7 @@
<source-file src="src/ios/CDVRadar.m"/>
<podspec>
<pods use-frameworks="true">
<pod name="RadarSDK" spec="3.9.12"/>
<pod name="RadarSDK" spec="3.9.14"/>
</pods>
</podspec>
</platform>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ public void initialize(final JSONArray args, final CallbackContext callbackConte

SharedPreferences.Editor editor = context.getSharedPreferences("RadarSDK", Context.MODE_PRIVATE).edit();
editor.putString("x_platform_sdk_type", "Cordova");
editor.putString("x_platform_sdk_version", "3.9.0");
editor.putString("x_platform_sdk_version", "3.9.1");
editor.apply();

Radar.initialize(context, publishableKey);
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/ios/CDVRadar.m
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ - (void)initialize:(CDVInvokedUrlCommand *)command {
NSString *publishableKey = [command.arguments objectAtIndex:0];

[[NSUserDefaults standardUserDefaults] setObject:@"Cordova" forKey:@"radar-xPlatformSDKType"];
[[NSUserDefaults standardUserDefaults] setObject:@"3.9.0" forKey:@"radar-xPlatformSDKVersion"];
[[NSUserDefaults standardUserDefaults] setObject:@"3.9.1" forKey:@"radar-xPlatformSDKVersion"];

[Radar initializeWithPublishableKey:publishableKey];

Expand Down

0 comments on commit 5de2ce8

Please sign in to comment.