Reputation: 21
I have migrated to Mountain Lion OS version 10.8.2. Since mountain lion, installed xCode 4.5.1. Now I only get the development target iOS 6. However, I have to deploy both version sdk's (iOS 5 & iOS 4) in xCode 4.5.1.
How can I have both iOS 5 and iOS 4 SDK's (simulators) in xCode4.5.1?
Please help.
Thanks, Rubini.S
Upvotes: 2
Views: 717
Reputation: 560
Here is what you need to do..
Open terminal session and execute following commands
cd /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
sudo mv $HOME/Desktop/iPhoneSimulator5.1.sdk .
sudo chmod -R root:wheel iPhoneSimulator5.1.sdk
Restart XCode
Upvotes: 3