Phonegap Build iOS无法验证

时间:2014-09-09 22:47:09

标签: ios cordova phonegap-build

当我们在Phonegap Build for iOS中构建我们的应用程序时,当我们将其提交到应用程序商店时,我们会在IPA中收到有关我们图标的错误。

我们收到“ERROR ITMS-9000:”错误所需的图标文件。该套装不包含完全'120x120'像素的iPhone / iPod Touch的应用程序图标,iOS版本的.png> = 7.0“

问题是我们的config.xml,从所有迹象都是正确的。 如果您想亲眼看看,可以使用以下链接:https://gist.github.com/marcusds/352afdf47d90d2b13ebb

我们将图标包括在内:

<icon src="www/res/icon/ios/icon-60.png" gap:platform="ios" width="60" height="60" />
<icon src="www/res/icon/ios/icon-60@2x.png" gap:platform="ios" width="120" height="120" />
<icon src="www/res/icon/ios/icon-76.png" gap:platform="ios" width="76" height="76" />
<icon src="www/res/icon/ios/icon-76@2x.png" gap:platform="ios" width="152" height="152" />

这不正确吗? 我们可能做错了什么?

1 个答案:

答案 0 :(得分:1)

更改图标和图标的路径从config.xml中的www/res/icon/ios/..res/icon/ios/闪屏。

<icon src="www/res/icon/ios/icon-60.png" gap:platform="ios" width="60" height="60"/>
<icon src="www/res/icon/ios/icon-60@2x.png" gap:platform="ios" width="60" height="60"/>
...

到这个

<icon src="res/icon/ios/icon-60.png" gap:platform="ios" width="60" height="60" />
<icon src="res/icon/ios/icon-60@2x.png" gap:platform="ios" width="60" height="60"/>
...

希望它有效现在,祝你好运。