I need to include a launch image referenced in the Info.plist
under UILaunchImages
with a UILaunchImageSize
value set to {320, 568}
. Is this the correct way of doing it?
The message I got after submitting my app "must include a launch image referenced in the Info.plist under UILaunchImages with a UILaunchImageSize value set to {320, 568}".
<key>UILaunchImages</key>
<array>
<dict>
<key>Launch image </key>
<string>Default@2x-iphone.png</string>
<key>UILaunchImageName</key>
<string>Default</string>
<key>UILaunchImageSize</key>
<string>{320,568}</string>
<key>UILaunchImageMinimumOSVersion</key>
<string>7.0</string>
</dict>
</array>