1

I have an iPad app that I submitted to Apple successfully using my personal Apple Developer account. However, when I switched code signing certificates, everything compiles and validates except the icon itself. Here is the error I get when I try to Archive the app.

iPad: Icon-72.png: icon dimensions (0 x 0) don't meet the size requirements.  The icon file must be 72x72 pixels, in .png format (-19014)
Unable to validate your application. - (null)

The icon is definitely a 72x72 PNG and this validates perfectly with my personal account.

Any ideas as to what might be causing this?

Thanks!

jpsim
  • 14,329
  • 6
  • 51
  • 68
  • Is it possible to just delete the offending icon on disk and `svn update` or `git pull` to re-retrieve it and give it another go? – Ryan Wersal Feb 06 '12 at 22:09

2 Answers2

1

This has been discussed a lot today on the Apple Developer forums. I suspect it has to do with the recent Mac OS X Lion update and Xcode compatibility. I had this issue with the Icon.png file and the solution for me was to download Application Loader from iTunes Connect and use that to submit the application update.

So, I'd suggest bypassing Xcode's Orgranizer's validation and try to use Application Loader instead.

Moshe
  • 57,511
  • 78
  • 272
  • 425
  • Thanks Moshe, indeed I could've looked a little deeper. Here's another stackoverflow thread with more info: http://stackoverflow.com/questions/9108500/warning-ipad-icon-72-png-icon-dimensions-0-x-0 – jpsim Feb 06 '12 at 22:20
0

This might help someone out there: I eventually come across this answer:

Apparently you need to add a row to your plist file if you want to deploy to both ipad and iphone.

SpiRail
  • 1,377
  • 19
  • 28