bump deployment targets for Xcode 14.3 - #1134
Open
lanephillips wants to merge 2 commits into
Open
Conversation
|
According to this https://developer.apple.com/support/xcode/ the minimum deployment target for Xcode 14.3 is iOS 11 not iOS 16.1. The minimum iOS SDK for the App Store must be the iOS 16.1 SDK, but this should only bump up to iOS 11 for deployment target in order to support Xcode 14.3. |
lanephillips
force-pushed
the
bump_osx_target
branch
from
April 6, 2023 12:37
cef2199 to
ff865af
Compare
Author
|
@macblazer , fixed now. |
hanishassim
approved these changes
Apr 28, 2023
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Xcode 14.3 fails to link applications when a framework has a macOS deployment target earlier than 10.13 or an iOS deployment target earlier than 16.1. (As of April 2023 apps built for earlier than iOS 16.1 cannot be submitted to the app store.) The linker will fail with an error like this:
ld: file not found: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_macosx.aSimply increasing the deployment target in the Podspec file is sufficient to fix the error.