Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Missing required icon file. The bundle does not contain an app icon for iPad of exactly '167x167' pixels, in .png format when trying to upload app

I succesfully upload my app on xamarin forms but after it is uploaded i recieve this in an email from apple:

"Missing required icon file. The bundle does not contain an app icon for iPad of exactly '167x167' pixels, in .png format ."

So it wants an image in my resourcesfile i suppose (not in info.plist icons as they are not asking for 167x there) but should I name it: [email protected] or Icon-174.png?

like image 389
medvedo Avatar asked Apr 05 '16 20:04

medvedo


1 Answers

I've had this particular problem in the last couple of days.

The iPad icon didn't show within the Info.plist and kept giving the warning you're getting right now.

My fix was to manually add the icon [email protected] to the resources folder ( as Prashant pointed out ) and add this to the Info.plist:

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

I used to work with Asset Catalog but I couldn't get it to work with the iPad Pro icon.

like image 189
Mark Verkiel Avatar answered Dec 03 '22 07:12

Mark Verkiel