加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

xcode – 缺少营销图标 – iOS Cordova

发布时间:2020-12-15 01:51:54 所属栏目:百科 来源:网络整理
导读:上传到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 ios
cordova platform add ios@4.5.1

并将上面提到的行添加到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

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读