Reputation: 208
I have an app in appstore supporting from ios8 and later. But one of my client neeed to run it in ios 5.1.1 ipad too . Is it possible to submit apps in appstore having ios 5.x compatible versios ? How can i make it compatible with ios 5.x ?
Upvotes: 0
Views: 584
Reputation: 69459
Not his is not possible, iOS 5.1.1 supports device with ARM v6 processor. Which is no longer supported by Xcode. You will therefor need an older copy of Xcode, with the iOS 5.1.1 SDK.
The bige problem is that you will then not be able to submit your app to the Appstore since this requires you to build with the iOS 9 SDK.
You might be able to remove the ARM v6 slice from the binary you compiled with the older version of Xcode and add that slice to you new binary, but you will run into many more issues.
The cheapest is to buy this client an new iPad.
Upvotes: 3