美文网首页iOS 临点记录
提交二进制文件报错-ERROR ITMS-90096:

提交二进制文件报错-ERROR ITMS-90096:

作者: 门前的那颗樱桃树 | 来源:发表于2017-06-06 10:01 被阅读16次

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}. Launch images must be PNG files and located at the top-level of your bundle, or provided within each .lproj folder if you localize your launch images. Learn more about iPhone 5 support and app launch images by reviewing the 'iOS Human Interface Guidelines' at https://developer.apple.com/ios/human-interface-guidelines/graphics/launch-screen."

解决办法

1153B41B-CAC1-483A-AD18-A9A976D901DB.png

1、在info.plist 的source code 添加字段

<array>
    <dict>
        <key>UILaunchImageName</key>
        <string>Default-568</string>
        <key>UILaunchImageSize</key>
        <string>{320,568}</string>
    </dict>
</array>

2、或者在property list添加 如下图:

161D0B8E-B11F-46A8-BC47-97693991ED68.png

相关文章

网友评论

    本文标题:提交二进制文件报错-ERROR ITMS-90096:

    本文链接:https://www.haomeiwen.com/subject/ywhgfxtx.html