Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

icon files to specify in plist

Which/How many icon files are necessary to be included and specified in plist ?

I am getting error " Unable to verify icon dimensions, no icon found..." in Application Loader..

like image 258
copenndthagen Avatar asked Mar 17 '11 18:03

copenndthagen


People also ask

What is include all app icon assets?

A new build setting, “Include all app icon assets,” controls whether Xcode includes all app icon sets in the built product.

Where do I put app icons in Xcode?

Go to the General tab of your project settings, select the corresponding Target. In Appicon and launch images , select to use Assets catalog, open the asset catalog by clicking the arrow icon. Now drag the AppIcon. appiconset folder directly into the opened asset catalog in your XCode Project.


2 Answers

Here is the document you need.

QA1686

http://developer.apple.com/library/ios/#qa/qa1686/_index.html

Make sure the icon file is added to your project and matches the entry in your plist file. See above document for details.

like image 103
amattn Avatar answered Oct 10 '22 05:10

amattn


Icon file 512 X 512 pixels is not enough. Infact in your plist you need to add 57 X 57 pixels icon which is in PNG Format

If you are developing iPhone app then the iPhone app icon should be 57 X 57 pixels exact and one high resolution icon which is 512 X 512 pixels.

You need to add the 57 X 57 pixel icon as your app icon in your project's plist.

So I think error suggests that you have not added your application icon (57 X 57 pixels.

This icons need to be in PNG format.

It may be the case that you might have added the icon name is your project's plist but you may not have referenced or added the icon to your app's resources or bundle.

Note: 512 X 512 pixels icon is not required to be included in Project bundle.

It needs to be similar to your application icon.

It is to be added to iTunes Page for your app when you submit your app on iTunes.

Hope this helps you

like image 37
Parth Bhatt Avatar answered Oct 10 '22 05:10

Parth Bhatt