简体   繁体   中英

Missing required icon file deliveing iOS app

In a Xamarin.Forms project...

I am trying to upload my IPA file to App Store (using Application Loader) but I am getting the following errors:

在此处输入图片说明

...but in my Resources folder I have the related files:

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

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

Icon-76.png -> 76x76

So...I don't understand where is the problem, because the files are still there, and all configured as BundleResource .

Thank you for your help.

I could fix it adding this in Info.plist file

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

Try to use a Asset Catalog feature of XCode

But for support iOS 6, your solutions is right

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM