Home > Back-end >  How to change XCode Swift Minimum OS Version?
How to change XCode Swift Minimum OS Version?

Time:03-04

im relatively new to XCode and would really like to know, how to change a projects minimum OS Version. Error: i need Version 15.2 but have 14.7

Thanks for answers!

CodePudding user response:

Set the iOS deployment target to the version you want (in this case, version 15.2). This field is located in the project config. In my example, the project name is called "test":

enter image description here

  • Related