-
Notifications
You must be signed in to change notification settings - Fork 140
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Xcode 14 (14A309) regression: Project does not build #199
Comments
|
I put a note on your forums post, but this is a consequence of Xcode 14 containing a macOS 12 SDK, which has the Swift 5.6 standard library. For development using Swift 5.7 features targeting macOS, you should continue using the Xcode beta until a release with the macOS 13 SDK is available. |
|
Duplicate of #195 |
|
@stephentyrone @phausler What will be the minimum deployment target for an iOS app using this library? Because the Package.swift on platforms: [
.macOS("10.15"),
.iOS("13.0"),
.tvOS("13.0"),
.watchOS("6.0")
],But Apple Documentation of And this discrepancy, iOS 13 vs iOS 16 confuses me, ought to be the same, and which is that? iOS 16? Thus I cannot ship any iOS app which needs to target iOS 13, if this package in fact requires iOS 16? |
|
This project should still require iOS 13 to build and all the algorithm that require |
|
So @FranzBusch TL;DR is: I can ship an app using this project, targeting iOS 13. But for iOS 16 users, under the hood, their version of the app will using |
That is not quite right. You can ship an app using this package targeting iOS 13; however, you cannot use operators like |
|
@FranzBusch Right, makes perfect sense, thank you so much! |
I just downloaded Xcode 14 (non beta), version 14A309, and this project fails to compile.
The text was updated successfully, but these errors were encountered: