我们有一个IOS应用程序,我们想在APP商店发布。该应用程序在测试设备等上工作正常。但是,当我们尝试将应用程序上传到APP Store时,我们收到以下错误
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}.
这似乎是构建或应用程序配置问题,我们无法弄清楚。
我们的启动屏幕未本地化。
我们正在针对iOS 7.0构建,我们正在使用.xib或.storyboard
我们已经通过Name Default-568h.png创建了一个PNG文件,尺寸为(320×568),并将其放置在两个位置1)在Base.Iproj下,2)在Images.xcassets / LaunchImage.launchimage下
我们还在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>
然而它仍然无效
答案 0 :(得分:0)
您还需要尺寸为640x1136的@ 2x版本。或者只是将最低版本设置为8.0,这个错误将被忽略
答案 1 :(得分:0)