Reputation: 273
i have been using Xcode 8.2 to upload my apps to itunes connect.when i upload it from xcode the build gets uploaded successfully.
However when i login to itunes connect, i can see the build in processing in activity section for few seconds, then the build gets disappear automatically without any error or information.
i have also file a bug report to apple but they did not answer.
i have also tried Application loader but same result.
the same questions are asked on SO, but were too old, so i have to ask a new question.
please check below screenshots.
https://postimg.org/image/4xh8kq8bt/
https://postimg.org/image/7ykey9m6p/
https://postimg.org/image/mc8g6h6pt/
Thank you.
Upvotes: 4
Views: 951
Reputation: 2511
I did face the same problem. In our case we used camera, photo gallery and location but we had not added privacy key in info.plist.
<key>NSCameraUsageDescription</key>
<string>Please allow to access camera to take property images.</string>
<key>NSLocationAlwaysUsageDescription</key>
<string>Please allow to access nearest featured properties.</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>Please allow to access nearest featured properties.</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>Please allow to access photo library to use images.</string>
Another important thing is from iOS 9 iPad Multitasking support requires all the orientations but if your app does not, just add the UIRequiresFullScreen
key to your Xcode project’s Info.plist file and apply the Boolean value YES.
After we added above keys in application build was appearing in iTunesConnect successfully. So this might be helpful to you.
Note : We were getting email with error detail using which email we did uploaded application. So please check email which can help you too.
Please check following link for the list of property list required in the application.
Upvotes: 2