itenyh
itenyh

Reputation: 1939

Icon file error when submitting app

Now , I am going to submitting my app. When I validate the app, I came across the problem below:

Icon specified in the info.plist not found under the top level app wrapper: iTunesArtwork

The key of icon files in the info.plist is as below:

<key>CFBundleIconFiles</key>
<array>
    <string>iTunesArtwork</string>
    <string>Icon.png</string>
    <string>[email protected]</string>
    <string>[email protected]</string>
    <string>Icon-72.png</string>
</array>

And I have also added iTunesArtwork.png to my project (I have deleted the expanded name ".png")

I try deleting the value "iTunesArtwork" in the info.plist and the app passed the validation, but the app dose not have a icon. I don not know does that matter. How can I solve this problem?

Upvotes: 0

Views: 189

Answers (1)

WrightsCS
WrightsCS

Reputation: 50697

Get rid of the following:

<string>iTunesArtwork</string>

When your app is packaged and submitted to iTC, the iTunesArtwork file will be created and placed in the root of the .ipa package.

As for the icon not showing in Xcode Organizer when you submit, thats a bug I am thinking because my apps validate and submit properly too and they dont show the icon in organizer either.

Upvotes: 2

Related Questions