Skip to content

Commit b6084e0

Browse files
rajveermalviyagnprice
authored andcommitted
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 So update the min iOS version to 15.0, as we plan to bump our Firebase dependency soon. Also based on the platform-version statistics Greg posted: https://chat.zulip.org/#narrow/channel/48-mobile/topic/platform.20versions/near/2243725 we could bump it to 16.0, but there isn't specific need for that right now, so might as well leave that for later.
1 parent 2453ae7 commit b6084e0

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
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/Podfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,6 @@ SPEC CHECKSUMS:
245245
video_player_avfoundation: 2cef49524dd1f16c5300b9cd6efd9611ce03639b
246246
wakelock_plus: e29112ab3ef0b318e58cfa5c32326458be66b556
247247

248-
PODFILE CHECKSUM: 66b7725a92b85e7acc28f0ced0cdacebf18e1997
248+
PODFILE CHECKSUM: f23347f4ef610d6b07bcd5d9dc9e3ed75fb84721
249249

250250
COCOAPODS: 1.16.2

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)