MacUser
MacUser

Reputation: 491

Icon size requirement error Xcode

I am trying to validate an update for an app that I have in both iPhone and iPad versions. The validation is failing for both versions due to the following error:

icon dimensions (0 x 0) don't meet the size requirements. The icon file must be 72x72 pixels, in .png format (-19014)

the iPhone version is giving a similar error with a 57x57 size.

The icon file is in png format and the required size for both versions.

I have tried deleting the icon file and re-inserting it in Xcode but this didn't seem to help. anyone run into similar problems? Thank you for your help.

Upvotes: 4

Views: 658

Answers (3)

MoralCode
MoralCode

Reputation: 2050

use this

put in the image you want for a logo and it spits out the correctly sized icons...

Upvotes: 0

Abizern
Abizern

Reputation: 150605

Rather than turn off the useful compression of png files, you want to download the latest version of Application Loader.

https://itunesconnect.apple.com/apploader/ApplicationLoader_2.5.1.dmg

This is described in the Apple Developer Forums.

You just need to install it and then you can submit from Xcode as normal.

Upvotes: 2

MacUser
MacUser

Reputation: 491

Solved go to Build -> Packaging-> Compress PNG Files change to No and it should work

Upvotes: 0

Related Questions