美文网首页工作生活
上传ipa出错集合

上传ipa出错集合

作者: 读书人heart | 来源:发表于2019-07-03 20:51 被阅读0次

1、[2019-07-03 20:40:42 CST] <main> ERROR: ERROR ITMS-90717: "Invalid App Store Icon. The App Store Icon in the asset catalog in 'Runner.app' can't be transparent nor contain an alpha channel.

图标有alpha通道(png格式改为jpg)

如何查看一张图片是否有透明通道: 右击 -> 显示简介 -> Alpha 通道(是 表示有; 否 表示没有)

转载:https://www.jianshu.com/p/b91aec24d203

2、[2019-07-03 20:40:42 CST] <main> ERROR: ERROR ITMS-90783: "Missing bundle display name. The Info.plist key CFBundleDisplayName is missing or has an empty value in the bundle with bundle identifier 'xxx.xxx.xxxx'."

经过检查,我的info.plist文件里面没有CFBundleDisplayName的key值

<key>CFBundleDisplayName</key>
    <string>App名字</string>

加完后通过

3、[2019-07-03 20:40:42 CST] <main> ERROR: ERROR ITMS-90725: "SDK Version Issue. This app was built with the iOS 11.2 SDK. All iOS apps submitted to the App Store must be built with the iOS 11 SDK or later, included in Xcode 9 or later. Further, starting March 2019, all iOS apps submitted to the App Store must be built with the iOS 12.1 SDK or later, included in Xcode 10.1 or later."

更新XCode和系统

4、苹果提交版本后显示”缺少出口合规证明“的解决办法

本来版本一直审核中,因为改了些图片,吾就想能不能再提交个版本也审核。这样多省事啊。于是就提交了个版本,结果发现无法再提交另外的审核。

今天到开发账号里一看,版本提示:

缺少出口合规证明。

咱也没惹着谁,没碰着谁,怎么就?赶紧查:

1、iTounes Connect -> 功能 -> 加密。提交出口合规证明文档。

2、如果您的构建版本未使用加密,在 Info.plist 文件中使用键字符串值,这样无需为下一构建版本提供出口合规证明信息。

<key>ITSAppUsesNonExemptEncryption</key><false/>
转载:https://blog.csdn.net/quantum7/article/details/80843829

5、您的 App 正在使用广告标识符 (IDFA)
cd 到项目文件夹
grep -r advertisingIdentifier .
检查

转载:https://www.jianshu.com/p/56892880e003

相关文章

网友评论

    本文标题:上传ipa出错集合

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