Size of icon for iTunes?

Hi, I’ve looked around on the forums but havn’t found a solution. I know one of the iTunes-icons is supposed to be in 512x512, but then there’s this other icon, which is located in the Programs section in iTunes: http://img4.imageshack.us/i/programsicon.png/

What should I name this icon and what size should it be? [import]uid: 14018 topic_id: 7431 reply_id: 307431[/import]

Bump [import]uid: 14018 topic_id: 7431 reply_id: 26463[/import]

I think the icons you are looking at are simply the main app icon. Note the first one that is an A made out of tools; that is what gets displayed when the app doesn’t have an icon.

Related tangent: Note on this page the icons for Spotlight:
http://developer.apple.com/library/ios/#qa/qa2010/qa1686.html

That is yet another icon size that barely anyone mentions. I guess the general consensus is simply to ignore that one because it defaults to a scaled-down version of the main icon, but I’m curious if anyone knows more about that. [import]uid: 12108 topic_id: 7431 reply_id: 26472[/import]

It’s strange though since I do have an icon and it looks great on the device. But when I build the app and place it in iTunes the icon wont display. Do I have to make a copy of Icon.png and rename it to something differently? [import]uid: 14018 topic_id: 7431 reply_id: 26485[/import]

Icon.png (iPhone 57x75)
Icon@2x.png (iPhone4 114x114)

And if it is an iPad app (or universal):

Icon-72.png (iPad 72x72)

If you’re making an iPad or universal app, you should include the following in your build.settings file:

[blockcode]
iphone =
{
plist =
{
CFBundleIconFile = “Icon.png”,
CFBundleIconFiles = {
“Icon.png”,
“Icon@2x.png”,
“Icon-72.png”
}
}
}
[/blockcode]

Hope that helps! [import]uid: 7849 topic_id: 7431 reply_id: 26543[/import]

I tried with that code you provided, Jon. It’s very strange, it’s still not working, my icon still wont show inside iTunes. I’ve got these icon-images:

Icon.png
Icon@2x.png
Icon-72.png
Icon-Small.png
Icon-Small@2x.png
Icon-Small-50.png

Btw: At this stage I’m only building for testing purposes only. Can this be the issue? Maybe it’ll work once I build for the App Store? [import]uid: 14018 topic_id: 7431 reply_id: 26547[/import]

Yes, in the actual iTunes app on your Mac, it’ll show up that way. As long as it shows up properly on the device , then you’re good to go. [import]uid: 7849 topic_id: 7431 reply_id: 26550[/import]

Perfect:-) Thanks for the help [import]uid: 14018 topic_id: 7431 reply_id: 26555[/import]

can someone let me know what size(s) icon(s) need to be for Android builds (on Windows)

Cheers [import]uid: 40581 topic_id: 7431 reply_id: 28903[/import]