Skip to content

Commit

Permalink
bump beta version
Browse files Browse the repository at this point in the history
  • Loading branch information
KennyHuRadar committed Jul 22, 2024
1 parent d636121 commit fa0eda2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 3.10.0-beta.1
# 3.10.0-beta.2

- Bump iOS version from 3.9.14 to 3.15.0
- Bump Android version from 3.9.8 to 3.15.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ private void initialize(MethodCall call, Result result) {
boolean fraud = getBooleanFromMethodCall(call, "fraud", false);
SharedPreferences.Editor editor = mContext.getSharedPreferences("RadarSDK", Context.MODE_PRIVATE).edit();
editor.putString("x_platform_sdk_type", "Flutter");
editor.putString("x_platform_sdk_version", "3.10.0-beta.1");
editor.putString("x_platform_sdk_version", "3.10.0-beta.2");
editor.apply();
Radar.initialize(mContext, publishableKey, null, Radar.RadarLocationServicesProvider.GOOGLE, fraud);
Radar.setReceiver(new RadarFlutterReceiver(channel));
Expand Down
2 changes: 1 addition & 1 deletion ios/Classes/RadarFlutterPlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ - (void)initialize:(FlutterMethodCall *)call withResult:(FlutterResult)result {

NSString *publishableKey = [self getStringValueForKey:argsDict key:@"publishableKey"];
[[NSUserDefaults standardUserDefaults] setObject:@"Flutter" forKey:@"radar-xPlatformSDKType"];
[[NSUserDefaults standardUserDefaults] setObject:@"3.10.0-beta.1" forKey:@"radar-xPlatformSDKVersion"];
[[NSUserDefaults standardUserDefaults] setObject:@"3.10.0-beta.2" forKey:@"radar-xPlatformSDKVersion"];
[Radar initializeWithPublishableKey:publishableKey];
result(nil);
}
Expand Down
2 changes: 1 addition & 1 deletion ios/flutter_radar.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'flutter_radar'
s.version = '3.10.0-beta.1'
s.version = '3.10.0-beta.2'
s.summary = 'Flutter package for Radar, the leading geofencing and location tracking platform'
s.description = 'Flutter package for Radar, the leading geofencing and location tracking platform'
s.homepage = 'http://example.com'
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_radar
description: Flutter package for Radar, the leading geofencing and location tracking platform
version: 3.10.0-beta.1
version: 3.10.0-beta.2
homepage: https://github.com/radarlabs/flutter-radar

environment:
Expand Down

0 comments on commit fa0eda2

Please sign in to comment.