From e60f0e31e24f28811df86c6b761132d91c27a741 Mon Sep 17 00:00:00 2001 From: pdenert Date: Thu, 30 Jan 2025 16:32:56 +0100 Subject: [PATCH] Bump iOS and macOS deployment target --- docs/documentation/index.mdx | 4 ++-- docs/documentation/native/setup.mdx | 4 ++-- docs/getting-started.mdx | 4 ++-- docs/native/setup.mdx | 4 ++-- packages/patrol/darwin/patrol.podspec | 4 ++-- packages/patrol/example/ios/Podfile | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/documentation/index.mdx b/docs/documentation/index.mdx index a2e7e22c7..e1d032a8c 100644 --- a/docs/documentation/index.mdx +++ b/docs/documentation/index.mdx @@ -659,11 +659,11 @@ Check out our video version of this tutorial on YouTube! Check if this line in `Podfile` is present and uncommented. ``` - platform :ios, '11.0' + platform :ios, '12.0' ``` If yes, then check if **iOS deployment version** in Xcode project's **Build Settings** section for all targets (Runner and RunnerUITests) are set to the same value as in Podfile - (in case presented in snippet above, all should be set to 11.0). + (in case presented in snippet above, all should be set to 12.0). diff --git a/docs/documentation/native/setup.mdx b/docs/documentation/native/setup.mdx index a2e7e22c7..e1d032a8c 100644 --- a/docs/documentation/native/setup.mdx +++ b/docs/documentation/native/setup.mdx @@ -659,11 +659,11 @@ Check out our video version of this tutorial on YouTube! Check if this line in `Podfile` is present and uncommented. ``` - platform :ios, '11.0' + platform :ios, '12.0' ``` If yes, then check if **iOS deployment version** in Xcode project's **Build Settings** section for all targets (Runner and RunnerUITests) are set to the same value as in Podfile - (in case presented in snippet above, all should be set to 11.0). + (in case presented in snippet above, all should be set to 12.0). diff --git a/docs/getting-started.mdx b/docs/getting-started.mdx index 1bc11253c..ef7894905 100644 --- a/docs/getting-started.mdx +++ b/docs/getting-started.mdx @@ -659,11 +659,11 @@ Check out our video version of this tutorial on YouTube! Check if this line in `Podfile` is present and uncommented. ``` - platform :ios, '11.0' + platform :ios, '12.0' ``` If yes, then check if **iOS deployment version** in Xcode project's **Build Settings** section for all targets (Runner and RunnerUITests) are set to the same value as in Podfile - (in case presented in snippet above, all should be set to 11.0). + (in case presented in snippet above, all should be set to 12.0). If you couldn't find an answer to your question/problem, feel free to ask on diff --git a/docs/native/setup.mdx b/docs/native/setup.mdx index 1bc11253c..ef7894905 100644 --- a/docs/native/setup.mdx +++ b/docs/native/setup.mdx @@ -659,11 +659,11 @@ Check out our video version of this tutorial on YouTube! Check if this line in `Podfile` is present and uncommented. ``` - platform :ios, '11.0' + platform :ios, '12.0' ``` If yes, then check if **iOS deployment version** in Xcode project's **Build Settings** section for all targets (Runner and RunnerUITests) are set to the same value as in Podfile - (in case presented in snippet above, all should be set to 11.0). + (in case presented in snippet above, all should be set to 12.0). If you couldn't find an answer to your question/problem, feel free to ask on diff --git a/packages/patrol/darwin/patrol.podspec b/packages/patrol/darwin/patrol.podspec index 5b8160275..c56916f8d 100644 --- a/packages/patrol/darwin/patrol.podspec +++ b/packages/patrol/darwin/patrol.podspec @@ -16,8 +16,8 @@ Runs tests that use flutter_test and patrol APIs as native macOS / iOS integrati s.source_files = 'Classes/**/*' s.ios.dependency 'Flutter' s.osx.dependency 'FlutterMacOS' - s.ios.deployment_target = '11.0' - s.osx.deployment_target = '10.13' + s.ios.deployment_target = '12.0' + s.osx.deployment_target = '10.14' s.weak_framework = 'XCTest' s.ios.framework = 'UIKit' s.osx.framework = 'AppKit' diff --git a/packages/patrol/example/ios/Podfile b/packages/patrol/example/ios/Podfile index 7fcb5e2a7..fa9b63541 100644 --- a/packages/patrol/example/ios/Podfile +++ b/packages/patrol/example/ios/Podfile @@ -1,4 +1,4 @@ -platform :ios, '11.0' +platform :ios, '12.0' # CocoaPods analytics sends network stats synchronously affecting flutter build latency. ENV['COCOAPODS_DISABLE_STATS'] = 'true'