Skip to content

Commit

Permalink
use ios version 3.18.3 (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShiCheng-Lu authored Oct 8, 2024
1 parent 7cb1678 commit 0b4f882
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 3.12.1

- Bump iOS version from 3.18.2 to 3.18.3

# 3.12.0

- Bump iOS version from 3.17.0 to 3.18.2
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ android {
minSdkVersion 16
targetSdkVersion 31
versionCode 1
versionName '3.12.0'
versionName '3.12.1'
}
lintOptions {
disable 'InvalidPackage'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ private static void initialize(MethodCall call, Result result) {
String publishableKey = call.argument("publishableKey");
SharedPreferences.Editor editor = mContext.getSharedPreferences("RadarSDK", Context.MODE_PRIVATE).edit();
editor.putString("x_platform_sdk_type", "Flutter");
editor.putString("x_platform_sdk_version", "3.12.0");
editor.putString("x_platform_sdk_version", "3.12.1");
editor.apply();
Radar.initialize(mContext, publishableKey);
Radar.setReceiver(new RadarFlutterReceiver(channel));
Expand Down
2 changes: 1 addition & 1 deletion example/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ flutter_ios_podfile_setup

target 'Runner' do
flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
pod 'RadarSDKMotion', '3.17.0'
pod 'RadarSDKMotion', '3.18.3'
end

post_install do |installer|
Expand Down
2 changes: 1 addition & 1 deletion ios/Classes/RadarFlutterPlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ - (void)initialize:(FlutterMethodCall *)call withResult:(FlutterResult)result {

NSString *publishableKey = argsDict[@"publishableKey"];
[[NSUserDefaults standardUserDefaults] setObject:@"Flutter" forKey:@"radar-xPlatformSDKType"];
[[NSUserDefaults standardUserDefaults] setObject:@"3.12.0" forKey:@"radar-xPlatformSDKVersion"];
[[NSUserDefaults standardUserDefaults] setObject:@"3.12.1" forKey:@"radar-xPlatformSDKVersion"];
[Radar initializeWithPublishableKey:publishableKey];
result(nil);
}
Expand Down
4 changes: 2 additions & 2 deletions 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.12.0'
s.version = '3.12.1'
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 All @@ -10,7 +10,7 @@ Pod::Spec.new do |s|
s.source_files = 'Classes/**/*'
s.public_header_files = 'Classes/**/*.h'
s.dependency 'Flutter'
s.dependency 'RadarSDK', '3.18.2'
s.dependency 'RadarSDK', '3.18.3'
s.platform = :ios, '10.0'
s.static_framework = true

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.12.0
version: 3.12.1
homepage: https://github.com/radarlabs/flutter-radar

environment:
Expand Down

0 comments on commit 0b4f882

Please sign in to comment.