Reputation: 101
I have developed a app using swift 2.2 with Xcode 7.3.1 i have set my deployment target 9.3 and base SDK is also 9.3.Now i want reduce my deployment target to 8.1.what are the proper procedure to change deployment target without affecting any of the Frameworks and libraries or syntax.
Upvotes: 0
Views: 1261
Reputation: 17186
There is no direct way. If you really need to support your deployment target as 8.1 then you should test the application fully on 8.1. This will make sure the availability of all APIs in your minimum OS version.
Upvotes: 0