Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iTunes Connect not showing my uploaded IPA

I want to add a new version for my iOS application. I created a new version tab for my app in the iTunes Connect, set the information required, save them. Then I go to Xcode and make a archive, validate it and the pressed submit for Appstore.

After a few minutes the process done successfully but in the iTunes Connect no build appear and I can not "Submit to review". Under builds section it keeps saying: "Submit your builds using Xcode 5.1.1 or later, or Application Loader 3.0 or later."

What is the problem?

like image 261
Husein Behboudi Rad Avatar asked Jun 10 '15 10:06

Husein Behboudi Rad


People also ask

How long does it take for a build to show up in App Store Connect?

The build is not visible until the "Processing" step is in progress in the "Prerelease" tab. It should depends on the size of your app. For a 10Mb app of mine, it took about 5 min.

Can I download IPA from App Store Connect?

In your back office, go to the menu Publish > iOS App > Publish and generate your iOS app. 2. Once the build is ready, download the . ipa file.


2 Answers

For those that have uploaded their app through Xcode, but don't see it under the 'Build' heading on the 'App Store' tab, do the follow.

Go to the Activity tab and it will show you a list of builds for your app. You should see the app you just uploaded in this list and it will say that it is (Processing).

Wait about 15 - 20 mins for it to process and then you can continue on with listing your app.

like image 185
SaoBiz Avatar answered Oct 19 '22 19:10

SaoBiz


If we upload from Xcode 8, we need to check if any privacy keys to be added in the info.plist.

Like, NSCameraUsageDescription,NSPhotoLibraryUsageDescription,NSLocationWhenInUseUsageDescription,NSLocationAlwaysUsageDescription.

In my app I missed to add NSCalendarsUsageDescription.

We should also add description for the key. If not, the build won't appear in itunesconnect.

Hope, this will help someone.

like image 26
Nazik Avatar answered Oct 19 '22 20:10

Nazik