react-native-radar 3.23.0-beta.1 → 3.23.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Radar.podspec +1 -1
- package/android/src/oldarch/java/com/radar/RadarModule.java +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/ios/RNRadar.mm +1 -1
- package/package.json +1 -1
- package/src/version.ts +1 -1
package/Radar.podspec
CHANGED
|
@@ -98,7 +98,7 @@ public class RadarModule extends ReactContextBaseJavaModule implements Permissio
|
|
|
98
98
|
this.fraud = fraud;
|
|
99
99
|
SharedPreferences.Editor editor = getReactApplicationContext().getSharedPreferences("RadarSDK", Context.MODE_PRIVATE).edit();
|
|
100
100
|
editor.putString("x_platform_sdk_type", "ReactNative");
|
|
101
|
-
editor.putString("x_platform_sdk_version", "3.23.0-beta.
|
|
101
|
+
editor.putString("x_platform_sdk_version", "3.23.0-beta.2");
|
|
102
102
|
editor.apply();
|
|
103
103
|
Radar.initialize(getReactApplicationContext(), publishableKey, receiver, Radar.RadarLocationServicesProvider.GOOGLE, fraud, null, getCurrentActivity());
|
|
104
104
|
if (fraud) {
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "3.23.0-beta.
|
|
1
|
+
export declare const VERSION = "3.23.0-beta.2";
|
package/dist/version.js
CHANGED
|
@@ -3,4 +3,4 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.VERSION = void 0;
|
|
4
4
|
// This file contains the version of the react-native-radar package
|
|
5
5
|
// It should be updated to match the version in package.json
|
|
6
|
-
exports.VERSION = '3.23.0-beta.
|
|
6
|
+
exports.VERSION = '3.23.0-beta.2';
|
package/ios/RNRadar.mm
CHANGED
|
@@ -139,7 +139,7 @@ RCT_EXPORT_MODULE()
|
|
|
139
139
|
|
|
140
140
|
RCT_EXPORT_METHOD(initialize:(NSString *)publishableKey fraud:(BOOL)fraud) {
|
|
141
141
|
[[NSUserDefaults standardUserDefaults] setObject:@"ReactNative" forKey:@"radar-xPlatformSDKType"];
|
|
142
|
-
[[NSUserDefaults standardUserDefaults] setObject:@"3.23.0-beta.
|
|
142
|
+
[[NSUserDefaults standardUserDefaults] setObject:@"3.23.0-beta.2" forKey:@"radar-xPlatformSDKVersion"];
|
|
143
143
|
[Radar initializeWithPublishableKey:publishableKey];
|
|
144
144
|
}
|
|
145
145
|
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "React Native module for Radar, the leading geofencing and location tracking platform",
|
|
4
4
|
"homepage": "https://radar.com",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
|
-
"version": "3.23.0-beta.
|
|
6
|
+
"version": "3.23.0-beta.2",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
8
|
"files": [
|
|
9
9
|
"dist",
|
package/src/version.ts
CHANGED