Skip to content

Commit

Permalink
Bump iOS and macOS deployment target
Browse files Browse the repository at this point in the history
  • Loading branch information
pdenert committed Jan 30, 2025
1 parent f796603 commit e60f0e3
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions docs/documentation/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -659,11 +659,11 @@ Check out our video version of this tutorial on YouTube!
<Accordion title="Build is failing with errors on mismatching iOS deployment versions">
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).
</Accordion>
<Accordion title="How to generate FLUTTER_TARGET after removing it from *.xcconfig">
Expand Down
4 changes: 2 additions & 2 deletions docs/documentation/native/setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -659,11 +659,11 @@ Check out our video version of this tutorial on YouTube!
<Accordion title="Build is failing with errors on mismatching iOS deployment versions">
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).
</Accordion>
<Accordion title="How to generate FLUTTER_TARGET after removing it from *.xcconfig">
Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -659,11 +659,11 @@ Check out our video version of this tutorial on YouTube!
<Accordion title="Build is failing with errors on mismatching iOS deployment versions">
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).
</Accordion>
If you couldn't find an answer to your question/problem, feel free to ask on
Expand Down
4 changes: 2 additions & 2 deletions docs/native/setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -659,11 +659,11 @@ Check out our video version of this tutorial on YouTube!
<Accordion title="Build is failing with errors on mismatching iOS deployment versions">
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).
</Accordion>
If you couldn't find an answer to your question/problem, feel free to ask on
Expand Down
4 changes: 2 additions & 2 deletions packages/patrol/darwin/patrol.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion packages/patrol/example/ios/Podfile
Original file line number Diff line number Diff line change
@@ -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'
Expand Down

0 comments on commit e60f0e3

Please sign in to comment.