缺少必需的图标文件。该套装不包含iPad的应用程序图标,完全为'72x72'像素,iOS版本为.png格式< 7

时间:2015-10-07 19:05:19

标签: ios cordova phonegap-build application-loader

我遇到了使用Adobe的PhoneGapBuild提供应用程序的问题。我在Application Loader中收到错误,导致我无法继续操作。

“错误ITMS-90023:”缺少必需的图标文件。该套装不包含iPad的应用程序图标,完全为'72x72'像素,iOS版本为.png格式< 7.0“。

我已经注意到其他类似的帖子试图消除这个问题,但它仍然存在。我已经三次检查并重新编写了我的config.xml,验证了文件是否已正确修改,将文件重命名为PhoneGap文档中使用的确切文件名,验证了文件尺寸并从头开始重新创建文件。

到目前为止,我所做的一切都没有摆脱这个错误。

这是“res / icons / ios /”目录的屏幕抓取。

enter image description here

以下是我的config.xml用于ios图标的内容:

<platform name="ios">
<!-- iOS 8.0+ -->
<!-- iPhone 6 Plus  -->
<icon src="res/icons/ios/icon-60@3x.png" width="180" height="180" />

<!-- iOS 7.0+ -->
<!-- iPhone / iPod Touch  -->
<icon src="res/icons/ios/icon-60.png" width="60" height="60" />
<icon src="res/icons/ios/icon-60@2x.png" width="120" height="120" />
<!-- iPad -->
<icon src="res/icons/ios/icon-76.png" width="76" height="76" />
<icon src="res/icons/ios/icon-76@2x.png" width="152" height="152" />
<!-- iOS 6.1 -->
<!-- Spotlight Icon -->
<icon src="res/icons/ios/icon-40.png" width="40" height="40" />
<icon src="res/icons/ios/icon-40@2x.png" width="80" height="80" />
<!-- iPhone / iPod Touch -->
<icon src="res/icons/ios/icon.png" width="57" height="57" />
<icon src="res/icons/ios/icon@2x.png" width="114" height="114" />
<!-- iPad -->
<icon src="res/icons/ios/icon-72.png" width="72" height="72" />
<icon src="res/icons/ios/icon-72@2x.png" width="144" height="144" />
<!-- iPhone Spotlight and Settings Icon -->
<icon src="res/icons/ios/icon-small.png" width="29" height="29" />
<icon src="res/icons/ios/icon-small@2x.png" width="58" height="58" />
<!-- iPad Spotlight and Settings Icon -->
<icon src="res/icons/ios/icon-50@2x.png" width="100" height="100" />

<!-- images are determined by width and height. The following are supported -->
<splash src="res/splash/ios/splash-iphone.png" gap:platform="ios" width="320" height="480"/>
<splash src="res/splash/ios/splash-2x-iphone.png" gap:platform="ios" width="640" height="960"/>
<splash src="res/splash/ios/splash-portrait-ipad.png" gap:platform="ios" width="768" height="1024"/>
<splash src="res/splash/ios/splash-portrait-2x-ipad.png" gap:platform="ios" width="1536" height="2048"/>
<splash src="res/splash/ios/splash-landscape-ipad.png" gap:platform="ios" width="1024" height="768"/>
<splash src="res/splash/ios/splash-landscape-2x-ipad.png" gap:platform="ios" width="2048" height="1536"/>
<splash src="res/splash/ios/splash-568h-2x-iphone.png" gap:platform="ios" width="640" height="1136"/>
<splash src="res/splash/ios/splash-667h.png" gap:platform="ios" width="750" height="1334"/>
<splash src="res/splash/ios/splash-736h.png" gap:platform="ios" width="1242" height="2208"/>
<splash src="res/splash/ios/splash-landscape-736h.png" gap:platform="ios" width="2208" height="1242"/>
</platform>

0 个答案:

没有答案