Will Apple accept apps built only with Xcode 5

654 views Asked by At

I am doing one application in Xcode 4.5. Just yesterday I heard that Apple will reject the builds which are created below Xcode 5, and which are not supporting iOS 7. Is this information accurate?

5

There are 5 answers

4
Fazil On BEST ANSWER

That is correct. Apple will not approve apps that are compiled with Xcode versions below 5.0.

0
Volker On

Yes, that is exactly what Apple does. You should have received at least one mail to your developer account as well with that information.

4
Irfan On

Yes, Apple now only accepts builds from Xcode5. This is applicable since 1st Feb, 2014.

Here is the link:https://developer.apple.com/news/?id=12172013a

So, your build should be compiled from Xcode5 for submission on App Store, otherwise Apple rejects your App.

0
Mayank Jain On

Yes,Apple will not accept app created below xcode5. From 1 feb, new apps submitted to the App Store must be built with the latest version of Xcode (Xcode5) and must be optimized for iOS 7.

0
hotpaw2 On

Yes. As per this Apple announcement, as of 2014-Feb-01, a developer can only submit apps built using Xcode 5.x (or presumably later versions). Lesser builds won't pass validation during an attempt to submit them.

And Xcode 5 only supports building apps using the iOS 7 SDK. Use of any lower SDK with Xcode 5 is unsupported, and apps built with such also can't be submitted. You can set a lower Deployment Target for your app, such as iOS 5.1 or 6.0, if your app supports not only iOS 7, but those lower versions as well. But one should do this only if you test the app on actual devices running all the iOS versions claimed, as using only the iPhone Simulator is not a thorough OS compatibility test.

Note that it is likely that one will have to modify an older app when building it with the iOS 7 SDK, as several of the UI control metrics and default window/view positions have been changed from iOS 6 and earlier SDKs.