skip to Main Content

I’m trying to release my first iOS app and I have everything prepared except the uploaded build. For that I’m using Xcode 12.0.1 (also updated to 12.1 and same error). Here you can see that I uploaded successfully a version:
enter image description here

enter image description here

The problem comes when I go to my Apple developer account and I see no builds:
enter image description here
enter image description here

Also Activity tab is empty:
enter image description here

Anyone having the same problem?

3

Answers


  1. Chosen as BEST ANSWER

    I checked my email and got an email from Apple saying that I was missing some information in my Info.plist: enter image description here

    So I added the key and compiled a new version again. Now I have some information in my Activity tab: enter image description here

    To see what is the permission for and add a proper message we can check this page: https://developer.apple.com/documentation/bundleresources/information_property_list/nsmotionusagedescription


  2. I’m facing the same issue later I found that my app is using deprecated UIWebview instead of WKWebView that creates issues. Please check UIWebview is not used in code.

    Login or Signup to reply.
  3. Each build is going through an initial processing on iTunes – check "Activity" tab inside your Application – build you submitted should be visible there at first.

    Once it goes through processing – you will see it under "build" tabs.

    Also it seems you are checking wrong "Version" – make sure the iTunes version matches your build version – otherwise build will end up in "Activity" tab forever.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search