xcode – 缺少营销图标 – iOS Cordova

xcode – 缺少营销图标 – iOS Cordova,第1张

概述上传到AppStore时出现此错误: iOS Apps must include a 1024x1024px Marketing Icon in PNG format. Apps that do not include the Marketing Icon cannot be submitted for App Review or Beta App Review. 根据这里的其他答案,我相信完整的 上传到AppStore时出现此错误:

iOS Apps must include a 1024x1024px Marketing Icon in PNG format. Apps that do not include the Marketing Icon cannot be submitted for App RevIEw or Beta App RevIEw.

解决方法 根据这里的其他答案,我相信完整的答案是:

如果您使用了cordova平台更新ios,它将为您带来最新的稳定版本4.4.0,截至今天,它不知道添加应用商店图标的条目。

那么,你需要做的是:

cordova platform rm ioscordova platform add [email protected]

并将上面提到的行添加到config.xml中稍作修改 – 使用JPEG来避免“’appname.app’中资产目录中的App Store图标不能透明也不能包含Alpha通道”:

<icon height="1024" wIDth="1024" src="icons/ios/icon-1024.jpg" />

As soon as the stable version will become higher than 4.5.1,do not force that ‘old’ version!

要验证您的iOS平台版本,请在config.xml中查找以下行:

<engine name="ios" spec="~4.5.1" />

important! from 4.5.0 and on,the plugin ‘cordova-plugin-console’ is not supported and not required. You must remove it in order to build successfully:

cordova plugin rm cordova-plugin-console
总结

以上是内存溢出为你收集整理的xcode – 缺少营销图标 – iOS Cordova全部内容,希望文章能够帮你解决xcode – 缺少营销图标 – iOS Cordova所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1069264.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存