4

I have made Binary file from Xcode 8 and upload to App Store through Application Loader(3.6). Also it is submitted successfully with pop up. But the Binary is not showing in iTunesConnect since it crosses 19 hour yet it is not showing in itunesconnect.

Please Help me out from this situation

@update
Here is my Plist file enter image description here

iPhoneDev
  • 113
  • 6

1 Answers1

6

I faced same issue. I was using client's account and submitted builds. I got Upload Successful popup but builds were not shown. This happens because there are privacy policy changes for iOS 10 so that we have to add some permissions in Info.plist. Refer this post: iOS 10 - Changes in asking permissions of Camera, microphone and Photo Library causing application to crash

If you don't add these permissions or if you added permission but missed string value of it, your binary will not displayed on store. In this case apple will send email to Agent of developer account. So check that email. You might got email with subject something like this **iTunes Connect: Your app APP NAME (Apple ID: APP ID) has one or more issues**

So try to fix these and resubmit build. Once your build displays in activity tab with Processing status, then you can submit it for review after processing.

Also you have to add .entitlements file in case if your app contains push notifications and APNS setup. Refer this: xcode 8 push notification capabilities and entitlements file setting

This is weird issue and apple should throw error while validating it but they are not doing it. You can check above and fix the issue.

Community
  • 1
  • 1
Pushkraj Lanjekar
  • 2,254
  • 1
  • 21
  • 34
  • Hey Pushkraj, I have already added permission for Camera & Photos in Plist file. – iPhoneDev Nov 30 '16 at 09:42
  • Can you share Plist tags for those permissions? Right click and click on Open As Source Code and copy it. – Pushkraj Lanjekar Nov 30 '16 at 09:46
  • Check this to declare Privacy Permission Settings in Info. https://iosdevcenters.blogspot.com/2016/09/infoplist-privacy-settings-in-ios-10.html – Shardul Nov 30 '16 at 10:03
  • /Users/nikhilchawade/Desktop/Screen Shot 2016-11-30 at 3.36.21 PM.png – iPhoneDev Nov 30 '16 at 10:10
  • @iPhoneDev You can't add screenshot like this. Just share me code like NSCameraUsageDescription YOUR MESSAGE NSLocationAlwaysUsageDescription YOUR MESSAGE – Pushkraj Lanjekar Nov 30 '16 at 10:13
  • NSPhotoLibraryUsageDescription use to browse the photoNSCameraUsageDescription I Have added like this previously – iPhoneDev Nov 30 '16 at 10:21
  • @iPhoneDev Got the issue, whenever you add Privacy-XXXXXX, you have to add value for it So add "App wants to use camera" next to "Privacy - Camera Usage Description" And submit build again. And make sure you increased build number before uploading app, otherwise it will show you error of "Redundant Binary Uploaded" – Pushkraj Lanjekar Nov 30 '16 at 10:50
  • Thanks for your solution. I have added Key & value as you said. But still binary is not coming in iTunesconnect. nearly it 45 minutes when I uploaded binary on Application Loader. – iPhoneDev Nov 30 '16 at 12:32
  • Can you please check whether your agent got email regarding same? Agent email is same email from with you are login to developer.apple.com – Pushkraj Lanjekar Nov 30 '16 at 12:50
  • Let us [continue this discussion in chat](http://chat.stackoverflow.com/rooms/129444/discussion-between-iphonedev-and-pushkraj). – iPhoneDev Nov 30 '16 at 13:09
  • Perfect. Lets continue – Pushkraj Lanjekar Nov 30 '16 at 13:11