缺少所需的图标文件,提供iOS应用程序

时间:2015-10-05 07:13:56

标签: ios xamarin icons application-loader xamarin-forms

Xamarin.Forms 项目中......

我正在尝试将我的IPA文件上传到App Store(使用Application Loader),但我收到以下错误:

enter image description here

...但在我的资源文件夹相关文件中:

Icon-60@2x.png - > 120×120

Icon-76@2x.png - > 152x152

Icon-76.png - > 76x76

所以...我不明白问题出在哪里,因为文件仍然存在,并且都配置为 BundleResource

感谢您的帮助。

2 个答案:

答案 0 :(得分:2)

我可以修复它在Info.plist文件中添加它

  <key>CFBundleIconFiles</key>
  <array>
    <string>Icon-60@2x.png</string>
    <string>Icon-76.png</string>
    <string>Icon-76@2x.png</string>    
  </array>

答案 1 :(得分:-1)

Try to use a Asset Catalog feature of XCode

But for support iOS 6, your solutions is right