Major Issues Uploading Binary to App Store

Hi all,

So, I’m having major problems uploading my binary to the app store. I’ve had no issues building and running on a few test devices, and I am certain I’ve done everything properly when it comes to setting up provisioning profiles, labeling icons properly (as per naming conventions listed here and on apple’s support pages), etc.

When it comes to uploading my binary, though, I get the following errors:

–iPhone/iPod Touch: Icon.png: icon dimensions (114 x 114) don’t meet the size requirements. The icon file must be 57x57 pixels, in .png format.
–iPad: Icon.png: icon dimensions (114 x 114) don’t meet the size requirements. The icon file must be 72x72 pixels, in .png format.
–Application failed codesign verification. The signature was invalid, or it was not signed with an Apple submission certificate.

–This bundle is invalid. The application-identifier entitlement is not formatted correctly; it should contain your 10-character App ID Seed, followed by a dot, followed by your bundle identifier.

So, yeah. Kind of frustrating. I’m doing everything correctly, but for some reason the build is not being completed properly.

Any help is appreciated!

Thanks,
Logan [import]uid: 44896 topic_id: 7896 reply_id: 307896[/import]

Ok, a little update on my, umm, shall we say, stupidity. The last to errors (codesign verification and invalid bundle) aren’t happening anymore because I forgot to use a distribution certificate.

But the problems with the icon sizes still exist. How do I fix those?

Thanks!
Logan [import]uid: 44896 topic_id: 7896 reply_id: 28032[/import]

Hi mate.

You also made the required additions to your build.settings (or config.lua can’t remember which) for the icon sizes right ?

[import]uid: 6981 topic_id: 7896 reply_id: 28034[/import]

I put this into the build.settings file. Is that right?

settings =  
{  
 iphone =  
 {  
 plist =  
 {  
 CFBundleIconFile = "Icon.png",  
 CFBundleIconFiles = {  
 "Icon.png" ,   
 "Icon@2x.png" ,   
 "Icon-72.png" ,   
 "Icon-Small-50.png" ,   
 "Icon-Small.png" ,   
 "Icon-Small@2x.png"  
 },  
 },  
 }  
}  

Even with that, I still get the same error. [import]uid: 44896 topic_id: 7896 reply_id: 28039[/import]

Can anybody help me out?

Thanks! [import]uid: 44896 topic_id: 7896 reply_id: 28322[/import]