Niall Kiddle
Niall Kiddle

Reputation: 1487

Swift 4 - Setting a minimum deployment target

The current deployment target is 11.0 which is fine. However, I would like to know how I would set a minimum of 8.0?

Upvotes: 20

Views: 25908

Answers (1)

Craig Grummitt
Craig Grummitt

Reputation: 2995

You can set the deployment target in your project's target's general settings.

Adjust Deployment target

You can read more about this in Apple documentation "Setting Deployment Target".

Upvotes: 37

Related Questions