How to change minimum OS version? #183
-
|
I'm trying to push the Hello example to an iphone running iOS 15.8. I'm met with the following error message: Is it possible to lower that? I tried modifying |
Beta Was this translation helpful? Give feedback.
Answered by
kabiroberai
Jan 4, 2026
Replies: 1 comment
-
|
xtool selects the deployment version based on the value in your let package = Package(
name: "MyApp",
platforms: [.iOS(.v15)],
...
) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
kabiroberai
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
xtool selects the deployment version based on the value in your
Package.swift. So you can do something like