iTunes连接告诉我,我没有图标

时间:2018-05-17 13:19:17

标签: ios phonegap-build

我使用phonegap,HTML和javascript创建了一款应用。我上传了应用程序好几次到iTunes连接测试,现在突然我收到消息,我没有以下格式的图标。

120 x 120 152 x 152 76 x 76

但是我有路径文件夹中的图标,因此它们位于res / ios / icon /

这是我的配置文件中的信息。

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

    <!-- iOS 7.0+ -->
    <!-- iPhone / iPod Touch  -->
    <icon src="res/ios/icon/icon-60.png" width="60" height="60" />
    <icon src="res/ios/icon/icon-60@2x.png" width="120" height="120" />
    <!-- iPad -->
    <icon src="res/ios/icon/icon-76.png" width="76" height="76" />
    <icon src="res/ios/icon/icon-76@2x.png" width="152" height="152" />

    <!-- iOS 6.1 -->
    <!-- Spotlight Icon -->
    <icon src="res/ios/icon/icon-40.png" width="40" height="40" />
    <icon src="res/ios/icon/icon-40@2x.png" width="80" height="80" />
    <!-- iPhone / iPod Touch -->
    <icon src="res/ios/icon/icon.png" width="57" height="57" />
    <icon src="res/ios/icon/icon@2x.png" width="114" height="114" />
    <!-- iPad -->
    <icon src="res/ios/icon/icon-72.png" width="72" height="72" />
    <icon src="res/ios/icon/icon-72@2x.png" width="144" height="144" />

    <!-- iPhone Spotlight and Settings Icon -->
    <icon src="res/ios/icon/icon-small.png" width="29" height="29" />
    <icon src="res/ios/icon/icon-small@2x.png" width="58" height="58" />
    <!-- iPad Spotlight and Settings Icon -->
    <icon src="res/ios/icon/icon-50.png" width="50" height="50" />
    <icon src="res/ios/icon/icon-50@2x.png" width="100" height="100" />
</platform>

有人可以告诉我,我做错了吗?我目前正在使用build.phonegap来构建应用程序。

0 个答案:

没有答案