53
votes

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

13
if you are using xcode 9. New icon is added which needs to be updated in xcode. refer stackoverflow.com/questions/46406686/…Amod Gokhale

13 Answers

88
votes

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.

34
votes

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.

9
votes

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!!!

4
votes

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.

3
votes

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.

2
votes
<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

2
votes

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.

2
votes

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.

1
votes

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

1
votes

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.

0
votes

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

0
votes

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.

0
votes

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