在 Xamarin.Forms 项目中......
我正在尝试将我的IPA文件上传到App Store(使用Application Loader),但我收到以下错误:
...但在我的资源文件夹我相关文件中:
Icon-60@2x.png - > 120×120
Icon-76@2x.png - > 152x152
Icon-76.png - > 76x76
所以...我不明白问题出在哪里,因为文件仍然存在,并且都配置为 BundleResource 。
感谢您的帮助。
答案 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