I’ve been living in doubts since Xcode 4 release about deployment target option.
There are two options to set.
- First is on “TARGETS” pane and is called
Deployment Target. This one serves the purpose to set the lowest possible iOS version that app can run on. - Second is on “PROJECT” pane and is called
iOS Deployment Target. Well, this is the one that I’m not familiar with.
Can someone please explain it to me how to properly set second option if I support let say iOS 4+ ?
You can see I added a new configuration. You will now have different settings on the actual targets:
You can also do some fun stuff, like selecting your definitions on the target, copy and paste them on a file (*.xconfig file). You can them use this file as configuration, by defining it’s name:
This is particularly useful to maintain versions of the settings on the repository.
Edit 1.0:
I edited the second point