LizG
LizG

Reputation: 2530

Prompted to Update iOS Deployment Target to 12.0 when deployment set to iOS 10.0

I have updated to Xcode 12.0. My app has a deployment target of 10.0 but after updating to Xcode to 12.0, I am getting the following for all the pods in my podfile:

Screenshot 1: Build Settings

Update iOS Deployment Target
This will update the minimum deployment target of Target 'target' to '12.0'.

Why do i need to update the minimum deployment to 12.0 when my minimum deployment for this app is set for 10.0?

Do i uncheck 'Build Settings' and click on Perform Changes or do i update?

Upvotes: 18

Views: 9134

Answers (3)

Hahnemann
Hahnemann

Reputation: 4688

With Xcode 12.3, the latest as of this writing, you can upgrade the minimum deployment target to iOS 12.0 and support a wide range of devices, according to the latest iOS version of this matrix, assuming your users will make the upgrade to iOS 12. It appears the only device left out is the iPhone 5 and 5C. I also found a complete matrix that it appears to include all devices and iOS versions.

Upvotes: 5

roadRunner
roadRunner

Reputation: 201

I faced that kind of problem two years ago ,that sounds weird but I had to keep old Xcode version. I was using Carthage not pods by the way

Upvotes: 2

Alladinian
Alladinian

Reputation: 35696

You don't have to do it. Uncheck (note that there could be other types of changes that you may want to perform) & Perform Changes, or hit cancel if all changes are for min deployment target.

Upvotes: 17

Related Questions