Skip to content

Commit cec8d29

Browse files
ios: Bump min iOS version to 15.0, as required by latest Firebase iOS SDK
Firebase iOS SDK version 12.0 bumps minimum supported iOS version to 15.0, see: https://firebase.google.com/support/release-notes/ios#version_1200_-_july_15_2025 firebase/firebase-ios-sdk#14732 As we plan to bump our Firebase dependency soon, update the min iOS version to 15.0 .
1 parent 649a5a9 commit cec8d29

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
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>14.0</string>
24+
<string>15.0</string>
2525
</dict>
2626
</plist>

ios/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This should match the iOS Deployment Target
22
# (in Xcode, that's in project > Runner > Info)
33
# and MinimumOSVersion in ios/Flutter/AppFrameworkInfo.plist.
4-
platform :ios, '14.0'
4+
platform :ios, '15.0'
55

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

ios/Runner.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@
356356
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
357357
GCC_WARN_UNUSED_FUNCTION = YES;
358358
GCC_WARN_UNUSED_VARIABLE = YES;
359-
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
359+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
360360
MTL_ENABLE_DEBUG_INFO = NO;
361361
SDKROOT = iphoneos;
362362
SUPPORTED_PLATFORMS = iphoneos;
@@ -435,7 +435,7 @@
435435
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
436436
GCC_WARN_UNUSED_FUNCTION = YES;
437437
GCC_WARN_UNUSED_VARIABLE = YES;
438-
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
438+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
439439
MTL_ENABLE_DEBUG_INFO = YES;
440440
ONLY_ACTIVE_ARCH = YES;
441441
SDKROOT = iphoneos;
@@ -484,7 +484,7 @@
484484
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
485485
GCC_WARN_UNUSED_FUNCTION = YES;
486486
GCC_WARN_UNUSED_VARIABLE = YES;
487-
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
487+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
488488
MTL_ENABLE_DEBUG_INFO = NO;
489489
SDKROOT = iphoneos;
490490
SUPPORTED_PLATFORMS = iphoneos;

0 commit comments

Comments
 (0)