Missing Marketing Icon Xcode Bug

How to solve Missing Marketing Icon. iOS Apps must include a 1024x1024px

Now onwards we need to add a new icon in our project with the size 1024X1024. Please see below-attached image. This issue was stared from WWDC 2017.

Sample Image

Note: - Do not upload or use the beta version (mac os or Xcode) for app upload. As per Apple recommendation. I already got mail from Apple about this.

Missing Marketing Icon

Solved by adding iOS Marketing 1024pt icon in project
Sample Image

Where to find 'Missing Marketing Icon'

I faced same issue with Xamarin v.6.3 and xcode 9.0. After long search and long tries, here is how i solve it:

  1. Add 1024x1024.png icon to your project. (Make sure the png file dose not have Alpha or transparent). you can use Export option in Preview application of Mac.
  2. Open your Storyboard using Xcode.
  3. Go to the Assets.xcassets folder.
  4. Under Appicon category, you find App Store iOS box.
  5. Drag the icon from your images.
  6. Save your project in xcode.
  7. Go back to your Xamarin and make new build, then submit to Appstore.

App Store submission shows app icon issues in Xcode 11

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

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

Sample Image

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>


Related Topics



Leave a reply



Submit