Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode 5 minimum deployment target

Tags:

ios

xcode5

Currently I am using Xcode 4.6. My app needs to support minimum iOS 4.3. I also want to expand upper limit support to iOS 7. Does Xcode 5, iOS SDK 7 still support iOS 4.3 ? And is iOS 4.3 simulator still available in Xcode 5 ?

I tried to read up Xcode 5 Release Note but it does not mention anything. Thanks!

like image 694
RealityOD Avatar asked Mar 23 '23 06:03

RealityOD


1 Answers

If you want ios 4.3 simulator in your xcode 5 then follow this process

1> Go your application folder and right click on older xcode

2.> Show package content > contents > Developer > Platforms > iPhoneSimulator.platform >Developer > SDKs

3> Now copy this "iPhoneSimulator4.3.sdk" and follow this same directory structure for new xcode version and past this "iPhoneSimulator4.3.sdk" into "SDKs" folder along with "iPhoneSimulator7.0.sdk".

4> restart xcode and then open your project . It will start showing 4.3 along with 7.

like image 102
chandan Avatar answered Mar 29 '23 23:03

chandan