Skip to content

Commit 37dc9ea

Browse files
committed
ios: MinimumOSVersion 12.0 to 14.0 in ios/Flutter/AppFrameworkInfo.plist
The Flutter doc on deploying an iOS app says this number should match the deployment target we set in Xcode (which we also specify in ios/Podfile): https://docs.flutter.dev/deployment/ios#updating-the-apps-deployment-version ; sure, go ahead and update it. Prompted by noticing that `flutter run` started bumping it to 13.0 (in flutter/flutter@09d4dabd6; see discussion: #1489 (comment) ) and realizing that 14.0 is actually what it should be for us.
1 parent 7ca1ff7 commit 37dc9ea

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

ios/Flutter/AppFrameworkInfo.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
<key>CFBundleVersion</key>
2222
<string>1.0</string>
2323
<key>MinimumOSVersion</key>
24-
<string>12.0</string>
24+
<string>14.0</string>
2525
</dict>
2626
</plist>

ios/Podfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# This should match the iOS Deployment Target
22
# (in Xcode, that's in project > Runner > Info)
3+
# and MinimumOSVersion in ios/Flutter/AppFrameworkInfo.plist.
34
platform :ios, '14.0'
45

56
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.

0 commit comments

Comments
 (0)