Info.plistの値がありません - のInfo.plistキーの値'CFBundleIconName'はバンドル 'com.xxxx.yyyy'にありません。 iOS 11以降のSDKで構築されたアプリは、アセットカタログにアプリアイコンを提供する必要があります。このInfo.plistキーの値も指定する必要があります。詳細はhttp://help.apple.com/xcode/mac/current/#/dev10510b1f7を参照してください。これらの問題が修正されたら、修正されたバイナリを再配信できます。
アイコンの資産カタログに変換する必要がありますが、どうすればいいのかわかりません。Visual Studio 2015(Windows)?私はまったく同じ問題が持っていた
<key>CFBundleDisplayName</key>
<string>Name - Online</string>
<key>CFBundleIdentifier</key>
<string>com.xxxxx.xxxxxx</string>
<key>CFBundleVersion</key>
<string>3.4</string>
<key>CFBundleIconFiles</key>
<array>
<string>[email protected]</string>
<string>Icon-72.png</string>
<string>[email protected]</string>
<string>Icon.png</string>
<string>[email protected]</string>
<string>Icon-76.png</string>
<string>[email protected]</string>
<string>Default.png</string>
<string>[email protected]</string>
<string>[email protected]</string>
<string>Default-Landscape.png</string>
<string>[email protected]</string>
<string>Default-Portrait.png</string>
<string>[email protected]</string>
<string>[email protected]</string>
<string>Icon-Small-50.png</string>
<string>Icon-Small-40.png</string>
<string>[email protected]</string>
<string>Icon-Small.png</string>
</array>
<key>CFBundleShortVersionString</key>
<string>4.4</string>
、あなたのソリューションは、私のためしかし ** APPICONを優秀働い ** は、カタログ・グループ名と一致する ** AppIcons ** されている必要があります。そうしないと、他のエラーが発生します。 –
bertusaurus