Skip to content

Commit

Permalink
bump version to 3.10.0 (#100)
Browse files Browse the repository at this point in the history
* bump version

* change ci
  • Loading branch information
KennyHuRadar authored Jul 8, 2024
1 parent 1bad580 commit 1618804
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion android/src/main/java/io/radar/capacitor/RadarPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public void initialize(PluginCall call) {
String publishableKey = call.getString("publishableKey");
SharedPreferences.Editor editor = this.getContext().getSharedPreferences("RadarSDK", Context.MODE_PRIVATE).edit();
editor.putString("x_platform_sdk_type", "Capacitor");
editor.putString("x_platform_sdk_version", "3.9.2");
editor.putString("x_platform_sdk_version", "3.10.0");
editor.apply();
Radar.initialize(this.getContext(), publishableKey);
call.resolve();
Expand Down
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.

2 changes: 1 addition & 1 deletion ios/Plugin/Plugin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public class RadarPlugin: CAPPlugin, RadarDelegate, RadarVerifiedDelegate {
return
}
UserDefaults.standard.set("Capacitor", forKey: "radar-xPlatformSDKType")
UserDefaults.standard.set("3.9.2", forKey: "radar-xPlatformSDKVersion")
UserDefaults.standard.set("3.10.0", forKey: "radar-xPlatformSDKVersion")
Radar.initialize(publishableKey: publishableKey)
call.resolve()
}
Expand Down
4 changes: 2 additions & 2 deletions 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 package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "capacitor-radar",
"version": "3.9.2",
"version": "3.10.0",
"description": "Capacitor plugin for Radar, the leading geofencing and location tracking platform",
"main": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
Expand Down

0 comments on commit 1618804

Please sign in to comment.