Navaron Bracke

bump iOS minimum to iOS 12

@@ -3,6 +3,7 @@ @@ -3,6 +3,7 @@
3 **BREAKING CHANGES:** 3 **BREAKING CHANGES:**
4 4
5 * Flutter 3.19.0 is now required. 5 * Flutter 3.19.0 is now required.
  6 +* [iOS] iOS 12.0 is now the minimum supported iOS version.
6 7
7 Bugs fixed: 8 Bugs fixed:
8 * Fixed an issue where the camera preview and barcode scanner did not work the second time on web. 9 * Fixed an issue where the camera preview and barcode scanner did not work the second time on web.
@@ -21,6 +21,6 @@ @@ -21,6 +21,6 @@
21 <key>CFBundleVersion</key> 21 <key>CFBundleVersion</key>
22 <string>1.0</string> 22 <string>1.0</string>
23 <key>MinimumOSVersion</key> 23 <key>MinimumOSVersion</key>
24 - <string>11.0</string> 24 + <string>12.0</string>
25 </dict> 25 </dict>
26 </plist> 26 </plist>
1 # Uncomment this line to define a global platform for your project 1 # Uncomment this line to define a global platform for your project
2 -# platform :ios, '11.0' 2 +# platform :ios, '12.0'
3 3
4 # CocoaPods analytics sends network stats synchronously affecting flutter build latency. 4 # CocoaPods analytics sends network stats synchronously affecting flutter build latency.
5 ENV['COCOAPODS_DISABLE_STATS'] = 'true' 5 ENV['COCOAPODS_DISABLE_STATS'] = 'true'
@@ -41,7 +41,7 @@ post_install do |installer| @@ -41,7 +41,7 @@ post_install do |installer|
41 installer.pods_project.targets.each do |target| 41 installer.pods_project.targets.each do |target|
42 flutter_additional_ios_build_settings(target) 42 flutter_additional_ios_build_settings(target)
43 target.build_configurations.each do |config| 43 target.build_configurations.each do |config|
44 - config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0' 44 + config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
45 end 45 end
46 end 46 end
47 end 47 end
@@ -452,7 +452,7 @@ @@ -452,7 +452,7 @@
452 GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 452 GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
453 GCC_WARN_UNUSED_FUNCTION = YES; 453 GCC_WARN_UNUSED_FUNCTION = YES;
454 GCC_WARN_UNUSED_VARIABLE = YES; 454 GCC_WARN_UNUSED_VARIABLE = YES;
455 - IPHONEOS_DEPLOYMENT_TARGET = 11.0; 455 + IPHONEOS_DEPLOYMENT_TARGET = 12.0;
456 MTL_ENABLE_DEBUG_INFO = NO; 456 MTL_ENABLE_DEBUG_INFO = NO;
457 SDKROOT = iphoneos; 457 SDKROOT = iphoneos;
458 SUPPORTED_PLATFORMS = iphoneos; 458 SUPPORTED_PLATFORMS = iphoneos;
@@ -583,7 +583,7 @@ @@ -583,7 +583,7 @@
583 GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 583 GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
584 GCC_WARN_UNUSED_FUNCTION = YES; 584 GCC_WARN_UNUSED_FUNCTION = YES;
585 GCC_WARN_UNUSED_VARIABLE = YES; 585 GCC_WARN_UNUSED_VARIABLE = YES;
586 - IPHONEOS_DEPLOYMENT_TARGET = 11.0; 586 + IPHONEOS_DEPLOYMENT_TARGET = 12.0;
587 MTL_ENABLE_DEBUG_INFO = YES; 587 MTL_ENABLE_DEBUG_INFO = YES;
588 ONLY_ACTIVE_ARCH = YES; 588 ONLY_ACTIVE_ARCH = YES;
589 SDKROOT = iphoneos; 589 SDKROOT = iphoneos;
@@ -632,7 +632,7 @@ @@ -632,7 +632,7 @@
632 GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 632 GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
633 GCC_WARN_UNUSED_FUNCTION = YES; 633 GCC_WARN_UNUSED_FUNCTION = YES;
634 GCC_WARN_UNUSED_VARIABLE = YES; 634 GCC_WARN_UNUSED_VARIABLE = YES;
635 - IPHONEOS_DEPLOYMENT_TARGET = 11.0; 635 + IPHONEOS_DEPLOYMENT_TARGET = 12.0;
636 MTL_ENABLE_DEBUG_INFO = NO; 636 MTL_ENABLE_DEBUG_INFO = NO;
637 SDKROOT = iphoneos; 637 SDKROOT = iphoneos;
638 SUPPORTED_PLATFORMS = iphoneos; 638 SUPPORTED_PLATFORMS = iphoneos;
@@ -16,7 +16,7 @@ An universal scanner for Flutter based on MLKit. @@ -16,7 +16,7 @@ An universal scanner for Flutter based on MLKit.
16 s.source_files = 'Classes/**/*' 16 s.source_files = 'Classes/**/*'
17 s.dependency 'Flutter' 17 s.dependency 'Flutter'
18 s.dependency 'GoogleMLKit/BarcodeScanning', '~> 4.0.0' 18 s.dependency 'GoogleMLKit/BarcodeScanning', '~> 4.0.0'
19 - s.platform = :ios, '11.0' 19 + s.platform = :ios, '12.0'
20 s.static_framework = true 20 s.static_framework = true
21 # Flutter.framework does not contain a i386 slice. 21 # Flutter.framework does not contain a i386 slice.
22 s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' } 22 s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }