I am not able to find iOS 5 SDK on the apple app store. Where else can I download it from?
Asked
Active
Viewed 4,219 times
-1
-
I saw that thread before. It turns out that you cannot download older versions of XCode either. – CodeBlue Jan 21 '13 at 23:55
-
1I don't understand the downvotes. This is a serious development issue. I have not used iOS5 before, but I want my apps to be built for that platform, but apple doesn't seem to even allow me to do it. – CodeBlue Jan 21 '13 at 23:57
-
This question should read: "How can I download old versions of Xcode?" – Jessedc Jan 21 '13 at 23:58
-
Use Xcode 4.5.x like everyone else. If you want your app to support iOS 5.x in addition to iOS 6 then all you need to do is set your project's Deployment Target to iOS 5.0 or 5.1 as desired. – rmaddy Jan 21 '13 at 23:59
-
This question should read: "How can I download old versions of Xcode?" The answer is here: http://stackoverflow.com/questions/7047735/where-can-i-download-old-versions-of-xcode – Jessedc Jan 21 '13 at 23:57
1 Answers
-1
If you only want to be able to support older versions of iOS, set the deployment target to the minimum OS you want the app to run on. You don't need an older SDK for that.

Michael Baltaks
- 2,141
- 19
- 22
-
Tried that. Didn't work. The app works fine on iOS 5, but crashes on iOS6. It's the email bug - http://stackoverflow.com/questions/12567708/monotouch-ios-6-crash-when-using-mfmailcomposeviewcontroller – CodeBlue Jan 22 '13 at 00:01
-
Ok, so if you're using a 3rd party dev framework you might need an older SDK for that. Fair enough. – Michael Baltaks Jan 22 '13 at 00:03