Missing App Store Icon. iOS Apps must include a 1024x1024px App Store > Icon in PNG format

IosApp Store-Connect

Ios Problem Overview


when I try to submit the app > 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


I'm providing App Store Icon with 1024px*1024px PNG format in iTunes Connect but still getting this error

Ios Solutions


Solution 1 - Ios

In Xcode, they have added one additional app icon size with 1024px * 1024pxenter image description here

Go to Assets.xcassets and you can find this new addition at the bottom of your app icon image set.

Once you add app icon with 1024pt, it should fix the issue.

Solution 2 - Ios

As stated here we need to add one more icon, called 1024x1024px App Store Icon. Create a png icon of resolution 1024x1024.

Go to Project General Setting Tab

enter image description here

Click on No. 4 which opens the app icon sets. The following section will be visible.

enter image description here

Scroll down and you will see the App Store iOS icon set.

enter image description here

Preferably add the icon inside "AppIcon.appiconset" folder.

enter image description here

you can locate the folder by clicking the folder icon next to "Identity and Type" on the right side of your icon selection screen.

This should fix the issue.

Solution 3 - Ios

You need to include additional icon of 1024x1024pt size in Assets.xcassets.

Please find the below steps.

  1. Go to Assets.xcassets.
  2. Drag and drop the icon of 1024*1024pt in App Store iOS 1024pt field of Assets.xcassets.

For more information please find the below GIF representation.

Demonstarte of adding the icon in the xcassets

Hope it works!!!

Solution 4 - Ios

I'll quote just what Claude31 said here: https://forums.developer.apple.com/thread/90543

> May be useless question, but have you check the exact size of png image (in finder information) ?

In my case, the client sent an image to me called xxxx1024x1024.png, and the real size was 4000 x 4000. So, if you didn't create the image, is worth checking it.

Solution 5 - Ios

You can open this image in preview and select file -> Export... and set format png and check alpha . and save image and use updated image. i hope issue will be resolve.

Solution 6 - Ios

<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIconFile</key>
<string>icon.png</string>
<key>CFBundleIcons</key>
<dict>
    <key>CFBundlePrimaryIcon</key>
    <dict>
        <key>CFBundleIconFiles</key>
        <array>
            <string>icon.png</string>
            <string>[email protected]</string>
            <string>icon-72.png</string>
            <string>[email protected]</string>
        </array>
        <key>UIPrerenderedIcon</key>
        <false/>
    </dict>
</dict>

you need the App Store Image of your app in 1024 x 1024px without round corners and properties, see this answer Code Sign Error Xcode

Solution 7 - Ios

I found the problem my by chance. After doing tests with different types of .pn file "with transparency" and "without transparency" in neither of the two chaos worked for me. The problem was in the name that I put the collection in the App-Icon, the name had a "tilde" accent. I removed the accent and apple validated the compilation.

Solution 8 - Ios

With Xcode 12 you can have a Swift UI app that gives you this error ONLY for the MacOS version but NOT for the iOS version when you submit for review.

The trick is to add the Mac App icon images and sizes to the Images.xcassets folder as well as TAG that folder in the Attributes panel with 'Mac OS'. For some reason that's turned off.

Doing that will allow your Mac OS app to be ACCEPTED for 'review'.

Hope that helps someone. I've almost spent two days chasing this one down.

Solution 9 - Ios

My issue was the Sketch app was exporting incorrect images with the size 1024x1025.

Solution 10 - Ios

Per the message you get from XCode you can also do this from App Store Connect after the fact.

App Store Connect Operation Warning

My Apps > Prepare for Submission > App Store Icon > Select image. App Store Connect - select image Has to be 1024x1024px png with no alpha channels or transparencies.

More info here.

2xSamurai's answer is a preferred longer term solution to avoid repeatedly doing this.

Solution 11 - Ios

My solution was to not use 'â' in the App Icon group name.

Solution 12 - Ios

1-)Xcode 9.4.1 open and open a new project.

2-)Create new assets catalog.

3-)fill in the required icons correctly.

4-)This AppIcon catalog right click and show in finder,open AppIcon.appiconset folder and copy all things in folder.

5-)Open old project,old project AppIcon catalog right click and show in finder and open folder delete all things.

6-)Paste in the folder you copied.

7-)Clean, Build Project and Archive.

And Succesfully Upload App Store.

Solution 13 - Ios

Try to add the an image 1024 X 1024 and rename it to "icon-1024.png" on the app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/ and add the json below to app/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json

    {
          "size" : "1024x1024",
          "idiom" : "ios-marketing",
          "filename" : "icon-1024.png",
          "scale" : "1x"
    } 

For me is work

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionAli FarisView Question on Stackoverflow
Solution 1 - IosAlap AneraoView Answer on Stackoverflow
Solution 2 - Ios2xSamuraiView Answer on Stackoverflow
Solution 3 - IosRamkrishna SharmaView Answer on Stackoverflow
Solution 4 - IosJuan GiorelloView Answer on Stackoverflow
Solution 5 - Iosjitendra JangirView Answer on Stackoverflow
Solution 6 - IosNishant GuptaView Answer on Stackoverflow
Solution 7 - Iosch3ssusView Answer on Stackoverflow
Solution 8 - IosWaxhawView Answer on Stackoverflow
Solution 9 - IosVladimír SlavíkView Answer on Stackoverflow
Solution 10 - IosJGFMKView Answer on Stackoverflow
Solution 11 - IosRick van der LindeView Answer on Stackoverflow
Solution 12 - IosStanDevView Answer on Stackoverflow
Solution 13 - IosKefah.bView Answer on Stackoverflow