Newly uploaded builds not appearing or processing in App Store Connect

Viewed 723

I've uploaded several builds over the past 48 hours and none of them are appearing nor processing in App Store Connect. The builds have uploaded successfully through Xcode. Has anyone else experienced this and know a potential resolution? I've submitted a support ticket with Apple but I'm hoping for a quicker resolution. Thanks in advance for any insight.

3 Answers

Give your builds 24-48 hours to appear mine already started to appear

I don't know why, but disabling this option while distributing app helped me

I don't know why, but disabling this option while distributing app helped me

Followed these steps:

  1. Please check your mail...apple reports issue regarding your app in your mail..Try fixing them.
  2. In my case, I added these following in my info.plist:

<key>NSPhotoLibraryUsageDescription</key>
<string>This app requires access to the photo library.</string>
<key>NSMicrophoneUsageDescription</key>
<string>This app does not require access to the microphone.</string>
<key>NSCameraUsageDescription</key>
<string>This app requires access to the camera.</string>

Related