Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Radar.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Pod::Spec.new do |s|
s.source_files = "ios/**/*.{h,m,mm,cpp}"
s.private_header_files = "ios/**/*.h"

s.dependency "RadarSDK", "3.24.1"
s.dependency "RadarSDK", "3.25.0-beta.3"

install_modules_dependencies(s)
end
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
def radar_sdk_version = '3.24.0'
def radar_sdk_version = '3.24.1'

buildscript {
ext.getExtOrDefault = {name ->
Expand Down
2 changes: 1 addition & 1 deletion android/src/newarch/java/com/radar/RadarModule.kt
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ class RadarModule(reactContext: ReactApplicationContext) :
override fun initialize(publishableKey: String, fraud: Boolean): Unit {
val editor = reactApplicationContext.getSharedPreferences("RadarSDK", Context.MODE_PRIVATE).edit()
editor.putString("x_platform_sdk_type", "ReactNative")
editor.putString("x_platform_sdk_version", "3.23.6")
editor.putString("x_platform_sdk_version", "3.24.0-beta.2")
editor.apply()

Radar.initialize(reactApplicationContext, publishableKey, radarReceiver, Radar.RadarLocationServicesProvider.GOOGLE, fraud, null, radarInAppMessageReceiver, currentActivity)
Expand Down
2 changes: 1 addition & 1 deletion android/src/oldarch/java/com/radar/RadarModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public void initialize(String publishableKey, boolean fraud) {
this.fraud = fraud;
SharedPreferences.Editor editor = getReactApplicationContext().getSharedPreferences("RadarSDK", Context.MODE_PRIVATE).edit();
editor.putString("x_platform_sdk_type", "ReactNative");
editor.putString("x_platform_sdk_version", "3.23.6");
editor.putString("x_platform_sdk_version", "3.24.0-beta.2");
editor.apply();
Radar.initialize(getReactApplicationContext(), publishableKey, receiver, Radar.RadarLocationServicesProvider.GOOGLE, fraud, null, inAppMessageReceiver, getCurrentActivity());
if (fraud) {
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/RNRadar.mm
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ - (void)didUpdateToken:(RadarVerifiedLocationToken *)token {

RCT_EXPORT_METHOD(initialize:(NSString *)publishableKey fraud:(BOOL)fraud) {
[[NSUserDefaults standardUserDefaults] setObject:@"ReactNative" forKey:@"radar-xPlatformSDKType"];
[[NSUserDefaults standardUserDefaults] setObject:@"3.23.6" forKey:@"radar-xPlatformSDKVersion"];
[[NSUserDefaults standardUserDefaults] setObject:@"3.24.0-beta.2" forKey:@"radar-xPlatformSDKVersion"];
[Radar initializeWithPublishableKey:publishableKey];
}

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
Expand Up @@ -3,7 +3,7 @@
"description": "React Native module for Radar, the leading geofencing and location tracking platform",
"homepage": "https://radar.com",
"license": "Apache-2.0",
"version": "3.23.6",
"version": "3.24.0-beta.2",
"main": "dist/index.js",
"files": [
"dist",
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// This file contains the version of the react-native-radar package
// It should be updated to match the version in package.json
export const VERSION = '3.23.6';
export const VERSION = '3.24.0-beta.2';
Loading