2017-11-12 11 views
0

マイコルドバのバージョンは7.1.0であると私はApplicationLoaderでAppStoreのために私のアプリをアップロードしようとするとコルドバ-IOSのバージョンは、それが返す4.5.3コルドバ無効な画像パスがAppIcon83.5x83.5

ある

ERROR ITMS-90032 :「無効なイメージパス - キー 『CFBundleIcons』の下に参照されたパスに見つかりませんでした画像: 『AppIcon83.5.x83.5』」ここで

は、iOS用のアイコンのセクションでは、私の​​3210

<platform name="ios"> 
    <allow-intent href="itms:*" /> 
    <allow-intent href="itms-apps:*" /> 
    <icon height="180" src="res/icon/ios/[email protected]" width="180" /> 
    <icon height="60" src="res/icon/ios/icon-60.png" width="60" /> 
    <icon height="120" src="res/icon/ios/[email protected]" width="120" /> 
    <icon height="76" src="res/icon/ios/icon-76.png" width="76" /> 
    <icon height="152" src="res/icon/ios/[email protected]" width="152" /> 
    <icon height="40" src="res/icon/ios/icon-40.png" width="40" /> 
    <icon height="80" src="res/icon/ios/[email protected]" width="80" /> 
    <icon height="57" src="res/icon/ios/icon.png" width="57" /> 
    <icon height="114" src="res/icon/ios/[email protected]" width="114" /> 
    <icon height="72" src="res/icon/ios/icon-72.png" width="72" /> 
    <icon height="144" src="res/icon/ios/[email protected]" width="144" /> 
    <icon height="167" src="res/icon/ios/icon-167.png" width="167" /> 
    <icon height="29" src="res/icon/ios/icon-small.png" width="29" /> 
    <icon height="58" src="res/icon/ios/[email protected]" width="58" /> 
    <icon height="87" src="res/icon/ios/[email protected]" width="87" /> 
    <icon height="50" src="res/icon/ios/icon-50.png" width="50" /> 
    <icon height="100" src="res/icon/ios/[email protected]" width="100" /> 
    <icon height="167" src="res/icon/ios/[email protected]" width="167" /> 
</platform> 
であります

私は、xcodeまたはcordova cliのいずれかを使用して、シミュレータでアプリを構築して実行することができます。

私はnode_modules,platformspluginsのフォルダを削除してから、iosプラットフォームなどを再インストールして再追加してみましたが、何度か助けになりませんでした。

何が起こっているのかわかりません。誰かが助けてくれますか?

答えて

0

問題は、サイズが83.5x83.5のアプリアイコンが欠けていることです。 config.xmlファイルに表示されているように、その二重サイズのアイコンが表示されます。そのアイコンも含めてください。

あなたはこのソリューションを使用してアプリケーションをアップロードしようと手動でアプリのアイコンを追加し、config.xmlファイルに

を編集することができます。

+0

@ 2x以外のバージョンの 'icon-83.5'はありますか?それから実際の高さと幅はどうなりますか?そのようなアイコンは、コード:cordova:https://cordova.apache.org/docs/en/latest/config_ref/images.html apple:https://developer.apple.com/library/content/qaには記載されていません。 /qa1686/_index.html – rockneverdies

+0

混乱していると思うので、ネイティブ開発アイコンとハイブリッド開発アイコンを組み合わせないでください。あなたはアプリがハイブリッド技術に基づいていると思いますので、厳密にしてください。 @ 2xのアイコンがあなたのディレクトリにあるかどうかを確認してください。また、高さと幅は同じです83.5 – mayanksengar

+0

あなたのコメントに基づいて、私は ' 'then' 'しかし、何も働かなかった。 あなたは何を意味し、何を試してみるべきかを明示することはできますか? – rockneverdies

関連する問題