Hope4You
Hope4You

Reputation: 1947

Xcode Deployment Target Settings

  1. If I want my app to be compatible with older OS versions, back to Snow Leopard, are these the proper deployment target settings in XCode?

    OS X Deployment Target under "Project": 10.8

    Deployment Target under "Targets": 10.6

  2. What is the purpose of "OS X Deployment Target", if you can just use "Deployment Target"?

Upvotes: 2

Views: 6770

Answers (1)

Swift Dev Journal
Swift Dev Journal

Reputation: 20088

What you have would probably work, but to be safe you should set the deployment target for both the project and target to 10.6 if you want your app to be compatible with Snow Leopard.

If your project has only one target, the OS X Deployment Target setting isn't all that helpful. The OS X Deployment Target setting can help for projects with multiple targets. You could set a base deployment target for the project with the OS X Deployment Target setting and use the target's Deployment Target setting to change the deployment target for a single target.

Upvotes: 4

Related Questions