Fastlane - Missing required icon file

0

I'm trying to execute the command

fastlane deliver

However, after trying all the answers from all the forums I found, I still get the same error that is the following:

  

[13:44:26]: [Transporter Error Output]: ERROR ITMS-90022: "Missing required icon file. The bundle does not contain an app icon for iPhone / iPod Touch of exactly '120x120' pixels, in. png format for iOS versions > = 10.0. "

     

[13:44:26]: [Transporter Error Output]: ERROR ITMS-90023: "Missing required icon file. The bundle does not contain an app icon for iPad of exactly '167x167' pixels, in .png format for iOS versions supporting iPad Pro. "

     

[13:44:26]: [Transporter Error Output]: ERROR ITMS-90023: "Missing required icon file. The bundle does not contain an app icon for iPad of exactly '152x152' pixels, in .png format for iOS versions > = 10.0. "

     

[13:44:26]: Transporter transfer failed.

Even though I have all the icons, they have the correct names, they are .png and they are in the .json file. Does anyone know how to solve the problem?

Thank you.

    
asked by Eneko 22.08.2017 в 13:52
source

1 answer

0

Recently I was dealing with the same problem, I did not really care much about understanding the origin of it. I just found in several forums that it is about an image that you are placing whose dimensions do not fit according to what Apple requires.

I recommend you use this page link , where you upload the icon in 1024x1024 resolution and the page automatically generates the icons for both iOS and Android.

Inside the .zip that generates the page (in which you must provide an email to download the .zip file) is a folder called "AppIcon.appiconset" which one you should place inside your "Assets.xcassets", replacing the file "AppIcon" that your project probably already has (unless you have changed the name).

Once you do this you should not present any more problems, the best part is that it is quick and easy. There are also other pages and programs that do the same, but the one I mention is the one I use the most.

I hope I have been helpful. Thanks for reading my answer.

    
answered by 05.10.2017 в 16:01