We have an IOS App which we want to publish on the APP Store. The app is working fine on the testing devices etc. However when we try to Upload the app to the APP Store we are getting the following error
ERROR ITMS-90096: "Your binary is not optimized for iPhone 5 - New
iPhone apps and app updates submitted must support the 4-inch display
on iPhone 5 and must include a launch image referenced in the
Info.plist under UILaunchImages with a UILaunchImageSize value set
to {320, 568}.
This seems to be a build or Application configuration issue which we are unable to figure out.
and our launch screen is not localized.
we are building against iOS 7.0 and we are using .xib or .storyboard
We have created a PNG file by Name Default-568h.png dimensions are (320 × 568) and placed it at two locations 1) Under Base.Iproj and 2) Under Images.xcassets/LaunchImage.launchimage
We have also added the following to our Info.Plist
<key>UILaunchImages</key>
<array>
<dict>
<key>UILaunchImageMinimumOSVersion</key>
<string>7.0</string>
<key>UILaunchImageName</key>
<string>Default-568h</string>
<key>UILaunchImageOrientation</key>
<string>Portrait</string>
<key>UILaunchImageSize</key>
<string>{320, 568}</string>
</dict>
</array>
However it is still not working