Failed to send application to iTunesConnect.

I use OS X El Capitan 10.11 and Xcode 6.4 6E35b, when I click the submit button to view in iTunesConnect, it says this error. "Applications and application updates sent to the application store must be created with Xcode 5.1.1 or later, and the iOS 7 SDK."

I have no idea why this is happening, Xcode 6.4 is not a beta version, I downloaded it from the AppStore, this is a public release. If anyone knows about this, help me here.

When I tried through the application loader:
INFO ITMS-90111: "Your application was created with a beta version of Xcode or the iOS SDK. For beta testing, only applications distributed for beta testing can be created. To send an application for distribution to the App Store, you will need to create an application with versions Xcode and iOS SDK release. "

+4
source share
4 answers

Another solution is to use Application Loader:

  • Export your application as an IPA signed with a provisioning profile for the App Store
  • Open Application Loader (open Xcode, menu Xcode-> Open Developer Tools-> Application Loader
  • Log in to your iTunes Connect account in the Loader app.
  • Download the app

PS: This method is also useful when you have several iTunes Connect accounts for different clients, and you often need to download various applications for them.

+1
source

We have the same problem. It seems like Apple has just changed the definition of β€œembedded beta software,” not just the beta version of Xcode, but also the current version of Xcode to the beta version of Mac OS.

Check out the long thread of promoted app developers on the Apple developer forums here:

https://forums.developer.apple.com/thread/12848

+1
source

Yes, earlier the same problem had a problem for tvOS applications with the latest Xcode 7.2.1 from the App Store. Downgrading Xcode to 7.2 solved my problem.

+1
source

Check this out in your code:

  • Go to project β†’ Information β†’ Purpose of iOS deployment
  • Make sure it is not lower than β†’ 5.1.1
  • Install it with 6.0
  • Clean up the project and try again.

Hope this works for you.

0
source

All Articles