From 07ba082b1695321e9a2719f55e2be82611fb5e19 Mon Sep 17 00:00:00 2001 From: Mike Hardy Date: Fri, 11 Feb 2022 14:12:41 -0500 Subject: [PATCH] build(deps): align Xcode with current App Store submission requirements Apple defines the minimum version of Xcode that is truly usable. They will enforce iOS15 SDK (thus transitively requiring Xcode 13) in April 2022: 'Starting April 2022, all iOS and iPadOS apps submitted to the App Store must be built with Xcode 13 and the iOS 15 SDK.' Until then, Xcode 12 is still a viable compiler. --- packages/cli-doctor/src/tools/versionRanges.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli-doctor/src/tools/versionRanges.ts b/packages/cli-doctor/src/tools/versionRanges.ts index a6b299912..3999e4b5f 100644 --- a/packages/cli-doctor/src/tools/versionRanges.ts +++ b/packages/cli-doctor/src/tools/versionRanges.ts @@ -9,5 +9,5 @@ export default { ANDROID_SDK: '>= 26.x', ANDROID_NDK: '>= 19.x', // iOS - XCODE: '>= 10.x', + XCODE: '>= 12.x', };