How to deal with an Xcode update to recommend a custom warning?

I recently upgraded to Xcode 6. Everything works fine, but I got a new warning indicating that I am updating iOS Deployment Target to 8.0. Bellow is a screenshot of a message.

recommend upgrade iOS Deployment Target to 8.0

However, I do not want to update the deployment target because I want to support any device with OS version 7.0 and higher.

How to ignore this warning? Or maybe the iOS Deployment Target setup has nothing to do with the lowest version of the OS that my application can support?

+5
source share
1 answer

I think there is a bit of confusion here, there is a difference between the basic SDK option and the deployment goal. The deployment target determines which versions of iOS you support, the SDK version simply determines which version of the SDK you use to write code. Until you use any code that requires iOS 8 (or if you want to use it, check that it is available: Checking the availability of the class ). Therefore, to fix this, you must click “Make Changes.” You can still run the application on iOS 7 :)

+4
source

Source: https://habr.com/ru/post/1205122/


All Articles