Skip to content

Commit fb77dcf

Browse files
github-actions[bot]web-flowbuenaflor
authored
chore(deps): update Android SDK to v7.2.0 (#1815)
* chore: update flutter/scripts/update-android.sh to 7.2.0 * Update podfile * Update podfile * Update deployment target * update * update --------- Co-authored-by: GitHub <noreply@github.com> Co-authored-by: GIancarlo Buenaflor <giancarlo_buenaflor@yahoo.com>
1 parent 21bf0de commit fb77dcf

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131

3232
### Dependencies
3333

34-
- Bump Android SDK from v7.0.0 to v7.1.0 ([#1788](https://github.com/getsentry/sentry-dart/pull/1788))
35-
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#710)
36-
- [diff](https://github.com/getsentry/sentry-java/compare/7.0.0...7.1.0)
34+
- Bump Android SDK from v7.0.0 to v7.2.0 ([#1788](https://github.com/getsentry/sentry-dart/pull/1788), [#1815](https://github.com/getsentry/sentry-dart/pull/1815))
35+
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#720)
36+
- [diff](https://github.com/getsentry/sentry-java/compare/7.0.0...7.2.0)
3737
- Bump Cocoa SDK from v8.17.2 to v8.18.0 ([#1803](https://github.com/getsentry/sentry-dart/pull/1803))
3838
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8180)
3939
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.17.2...8.18.0)

flutter/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ android {
6060
}
6161

6262
dependencies {
63-
api 'io.sentry:sentry-android:7.1.0'
63+
api 'io.sentry:sentry-android:7.2.0'
6464
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
6565

6666
// Required -- JUnit 4 framework

flutter/example/ios/Podfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Uncomment this line to define a global platform for your project
2-
platform :ios, '11.0'
2+
platform :ios, '12.0'
33

44
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
55
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
@@ -32,19 +32,19 @@ target 'Runner' do
3232
use_modular_headers!
3333

3434
flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
35-
35+
3636
# Configure test target
3737
target 'RunnerTests' do
3838
inherit! :search_paths
3939
end
40-
40+
4141
end
4242

4343
post_install do |installer|
4444
installer.pods_project.targets.each do |target|
4545
flutter_additional_ios_build_settings(target)
4646
target.build_configurations.each do |config|
47-
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
47+
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
4848
end
4949
end
5050
end

flutter/example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@
460460
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
461461
GCC_WARN_UNUSED_FUNCTION = YES;
462462
GCC_WARN_UNUSED_VARIABLE = YES;
463-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
463+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
464464
MTL_ENABLE_DEBUG_INFO = NO;
465465
SDKROOT = iphoneos;
466466
SUPPORTED_PLATFORMS = iphoneos;
@@ -631,7 +631,7 @@
631631
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
632632
GCC_WARN_UNUSED_FUNCTION = YES;
633633
GCC_WARN_UNUSED_VARIABLE = YES;
634-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
634+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
635635
MTL_ENABLE_DEBUG_INFO = YES;
636636
ONLY_ACTIVE_ARCH = YES;
637637
SDKROOT = iphoneos;
@@ -681,7 +681,7 @@
681681
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
682682
GCC_WARN_UNUSED_FUNCTION = YES;
683683
GCC_WARN_UNUSED_VARIABLE = YES;
684-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
684+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
685685
MTL_ENABLE_DEBUG_INFO = NO;
686686
SDKROOT = iphoneos;
687687
SUPPORTED_PLATFORMS = iphoneos;

flutter/ios/sentry_flutter.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Sentry SDK for Flutter with support to native through sentry-cocoa.
1515
s.dependency 'Sentry/HybridSDK', '8.19.0'
1616
s.ios.dependency 'Flutter'
1717
s.osx.dependency 'FlutterMacOS'
18-
s.ios.deployment_target = '11.0'
18+
s.ios.deployment_target = '12.0'
1919
# Flutter 3.7 requires 10.14
2020
s.osx.deployment_target = '10.13'
2121

min_version_test/ios/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Uncomment this line to define a global platform for your project
2-
# platform :ios, '11.0'
2+
platform :ios, '12.0'
33

44
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
55
ENV['COCOAPODS_DISABLE_STATS'] = 'true'

0 commit comments

Comments
 (0)