Skip to content

Commit 81851d0

Browse files
committed
ios: Proactively bump min iOS version to 14.0, matching zulip-mobile
We could almost certainly bump it to 15, based on the last platform-version statistics Greg posted, and that was in 2023-09: https://chat.zulip.org/#narrow/stream/48-mobile/topic/platform.20versions/near/1648327 But there isn't specific code we want to write for iOS 15 features right now, so might as well leave that for later. In fact, I don't think there's a particularly strong need to bump it to 14, at least at the moment. But there's no reason it needs to lag behind zulip-mobile. And in case the lower threshold would be an obstacle later on, it's nice to have it cleared away proactively ahead of time.
1 parent 36f135c commit 81851d0

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

ios/Podfile

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
platform :ios, '12.0'
1+
# This should match the iOS Deployment Target
2+
# (in Xcode, that's in project > Runner > Info)
3+
platform :ios, '14.0'
24

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

ios/Podfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,6 @@ SPEC CHECKSUMS:
233233
SwiftyGif: 706c60cf65fa2bc5ee0313beece843c8eb8194d4
234234
url_launcher_ios: 6116280ddcfe98ab8820085d8d76ae7449447586
235235

236-
PODFILE CHECKSUM: 6998435987a000fdec9b2e1b5b1eef6d54bdba77
236+
PODFILE CHECKSUM: 7ed5116924b3be7e8fb75f7aada61e057028f5c7
237237

238238
COCOAPODS: 1.13.0

ios/Runner.xcodeproj/project.pbxproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@
344344
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
345345
GCC_WARN_UNUSED_FUNCTION = YES;
346346
GCC_WARN_UNUSED_VARIABLE = YES;
347-
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
347+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
348348
MTL_ENABLE_DEBUG_INFO = NO;
349349
SDKROOT = iphoneos;
350350
SUPPORTED_PLATFORMS = iphoneos;
@@ -423,7 +423,7 @@
423423
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
424424
GCC_WARN_UNUSED_FUNCTION = YES;
425425
GCC_WARN_UNUSED_VARIABLE = YES;
426-
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
426+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
427427
MTL_ENABLE_DEBUG_INFO = YES;
428428
ONLY_ACTIVE_ARCH = YES;
429429
SDKROOT = iphoneos;
@@ -472,7 +472,7 @@
472472
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
473473
GCC_WARN_UNUSED_FUNCTION = YES;
474474
GCC_WARN_UNUSED_VARIABLE = YES;
475-
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
475+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
476476
MTL_ENABLE_DEBUG_INFO = NO;
477477
SDKROOT = iphoneos;
478478
SUPPORTED_PLATFORMS = iphoneos;

0 commit comments

Comments
 (0)