skip to Main Content

Appstore rejects app upload and shows this error:

Invalid Image Path – No image found at the path referenced under key
‘CFBundleIcons’: ‘AppIcon20x20’

Can anyone share what the issue is? I had implemented appicon using this.

2

Answers


  1. Use https://makeappicon.com website to make app icons it will automatically generate app icons of all sizes required.

    Login or Signup to reply.
  2. This is my first post on StackOverflow so bear with me.

    I created this automator workflow, it generates all icon sizes needed for the App Store currently⟨sept 2022)

    https://github.com/saxjax/app-icon-creator.git

    1- Open in automator and save.

    2- Create a squared image 1024×1024 or larger using preview.

    3- right click on the image, select "To Icon"
    follow the prompts.

    The script consists of blocks of 4 for each icon size:
    1-Get value
    2-Duplicate
    3-Scale
    4-Rename

    If you need a particular size, just copy paste that quadruple and change the pixel size and the name accordingly.
    Feel free to manipulate and share the code however you like.

    In the future from Xcode 14 and out you only need to provide one 1024×1024 icon in your assets catalog.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search