Fran_gg7
Fran_gg7

Reputation: 737

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:

enter image description here

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

[email protected] -> 120x120

[email protected] -> 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.

Upvotes: 1

Views: 1138

Answers (2)

CReaTuS
CReaTuS

Reputation: 2585

Try to use a Asset Catalog feature of XCode

But for support iOS 6, your solutions is right

Upvotes: -1

Fran_gg7
Fran_gg7

Reputation: 737

I could fix it adding this in Info.plist file

  <key>CFBundleIconFiles</key>
  <array>
    <string>[email protected]</string>
    <string>Icon-76.png</string>
    <string>[email protected]</string>    
  </array>

Upvotes: 2

Related Questions