user16780334
user16780334

Reputation: 502

App Store submission shows app icon issues in Xcode 11

I was recently not able to submit the app to Appstore and its showing 3 errors and the thing is i have all the app icons placed in Xcode as you can see in my screenshot correctly but this error comes. I have been trying for many hours to solve this issue. Anyone has idea what is wrong and how to solve? I have included all the icons in my assets folder as you can see . I even checked the dimensions and even deleted assets folders and created new . But still the error comes. How to solve this issues?

Missing App Store Icon. iOS Apps must include a 1024x1024px App Store Icon in PNG format. Without providing the icon in the Asset Catalog or via iTunes Connect, apps cannot be submitted for App Review or Beta App Review

Missing Info.plist value - A value for the Info.plist key 'CFBundleIconName' is missing in the bundle 'com.abcd.iphone'. Apps built with iOS 11 or later SDK must supply app icons in an asset catalog and must also provide a value for this Info.plist key. For more information see http://help.apple.com/xcode/mac/current/#/dev10510b1f7


XCODE ASSET FOLDER enter image description here

Added the info.plist screenshot :

enter image description here

Upvotes: 2

Views: 950

Answers (1)

matt
matt

Reputation: 535169

Make sure your asset catalog is in fact part of the app target.

Make sure your build settings point to the AppIcon image set.

enter image description here

And make sure you don't have multiple asset catalogs with multiple AppIcon image sets, as the build system will not know which one to use.

You should be able to open the built app package in the Finder and see the CFBundleIcon entry:

<key>CFBundleIcons</key>
<dict>
    <key>CFBundlePrimaryIcon</key>
    <dict>
        <key>CFBundleIconFiles</key>
        <array>
            <string>AppIcon60x60</string>
        </array>
        <key>CFBundleIconName</key>
        <string>AppIcon</string>
    </dict>
</dict>

Upvotes: 2

Related Questions