this is my first ios app and when i try to submit it to the app store it gives me the ITMS-90096 error.
I think i have already uploaded all the right icons and splash screen images. It says something about the launchimage for 4-inch display on iphone-5 but i have no idea where to add it.
here is my launch image source.
i am fairly new to ios development i have a small android background and the ios process of adding and submitting apps seems quite alien to me.
When using Xcode 7+ and targeting iOS 8+ it is recommended to remove the .xib file and create a new LaunchScreen.storyboard by using the given template:
And than setting it in the Project File under App Icons and Launch Images:
So like @Aditya Deshmane I also use .xib file as my "Launch Image".
Adding both Default-568.png
and [email protected]
to my root directory didn't solve my issue.
I had to add the UILaunchImages
key to my Info.plist:
<key>UILaunchImages</key>
<array>
<dict>
<key>UILaunchImageName</key>
<string>Default-568</string>
<key>UILaunchImageSize</key>
<string>{320, 568}</string>
</dict>
</array>
As described here: iOS Key UILaunchImages