Skip to content

Commit 7c79c4d

Browse files
bump version again
1 parent 767ea0f commit 7c79c4d

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

android/src/newarch/java/com/radar/RadarModule.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ class RadarModule(reactContext: ReactApplicationContext) :
144144
// options parameter is no-op on Android for now
145145
val editor = reactApplicationContext.getSharedPreferences("RadarSDK", Context.MODE_PRIVATE).edit()
146146
editor.putString("x_platform_sdk_type", "ReactNative")
147-
editor.putString("x_platform_sdk_version", "3.23.7-beta.1")
147+
editor.putString("x_platform_sdk_version", "3.23.7-beta.2")
148148
editor.apply()
149149

150150
Radar.initialize(reactApplicationContext, publishableKey, radarReceiver, Radar.RadarLocationServicesProvider.GOOGLE, fraud, null, radarInAppMessageReceiver, currentActivity)

android/src/oldarch/java/com/radar/RadarModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public void initialize(String publishableKey, boolean fraud, ReadableMap options
103103
this.fraud = fraud;
104104
SharedPreferences.Editor editor = getReactApplicationContext().getSharedPreferences("RadarSDK", Context.MODE_PRIVATE).edit();
105105
editor.putString("x_platform_sdk_type", "ReactNative");
106-
editor.putString("x_platform_sdk_version", "3.23.7-beta.1");
106+
editor.putString("x_platform_sdk_version", "3.23.7-beta.2");
107107
editor.apply();
108108
Radar.initialize(getReactApplicationContext(), publishableKey, receiver, Radar.RadarLocationServicesProvider.GOOGLE, fraud, null, inAppMessageReceiver, getCurrentActivity());
109109
if (fraud) {

example/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/RNRadar.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ - (void)didUpdateToken:(RadarVerifiedLocationToken *)token {
186186

187187
RCT_EXPORT_METHOD(initialize:(NSString *)publishableKey fraud:(BOOL)fraud options:(NSDictionary *)options) {
188188
[[NSUserDefaults standardUserDefaults] setObject:@"ReactNative" forKey:@"radar-xPlatformSDKType"];
189-
[[NSUserDefaults standardUserDefaults] setObject:@"3.23.7-beta.1" forKey:@"radar-xPlatformSDKVersion"];
189+
[[NSUserDefaults standardUserDefaults] setObject:@"3.23.7-beta.2" forKey:@"radar-xPlatformSDKVersion"];
190190

191191
RadarInitializeOptions *radarOptions = [[RadarInitializeOptions alloc] init];
192192
if (options != nil && options[@"silentPush"]) {

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "React Native module for Radar, the leading geofencing and location tracking platform",
44
"homepage": "https://radar.com",
55
"license": "Apache-2.0",
6-
"version": "3.23.7-beta.1",
6+
"version": "3.23.7-beta.2",
77
"main": "dist/index.js",
88
"files": [
99
"dist",

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// This file contains the version of the react-native-radar package
22
// It should be updated to match the version in package.json
3-
export const VERSION = '3.23.7-beta.1';
3+
export const VERSION = '3.23.7-beta.2';

0 commit comments

Comments
 (0)