Reputation: 4562
I am trying to upload my iPhone app as a new version and getting the following error message when upload the IPA file in to the 'Loader' Application...
App was developed in Xcode 6 using swift...
I have defined "App Icons and Launch Image" section settings as follows
Idea is to Use storyboard "Initial View Controller" as the "Launch Screen"...
Would be grateful if anyone can guide me in getting this done. Thanks..
Upvotes: 0
Views: 4088
Reputation: 2400
LaunchScreen is only suppored from iOS8 upwards, so if you want to target iOS7 as well you need to specify the various launch images in their correct dimensions.
Specifically for this very error, ensure that you populate the image catalog for all the Portrait iPhone options in all the iOS versions that you want to support.
Upvotes: 0
Reputation: 2181
I got the same error.
1.I created a new storyboard file as LaunchScreen.
2.Target of my project -> App Icon and Launch Images -> Change the Launch Screen File to the newly created LaunchScreen storyboard.
3.Save, Build and Archived
This thing worked for me.Hope this helps you to.
Upvotes: 2