Invalid Image Path - No image found at the path referenced under key “CFBundleIconFile”: Icon.png

前端 未结 9 482
遥遥无期
遥遥无期 2020-12-29 01:01

I got this error from Application Loader when uploading my app to App Store. My app was developed at the time of iOS 3.0, and still targets at iOS 4.3 and above. I recently

相关标签:
9条回答
  • 2020-12-29 01:20

    None of the above solutions worked in my particular instance.

    In the end the following did work so in case anyone else has the same problem:

    1. Remove the app-icon set that is causing the problem from the Asset Catalog
    2. In target properties from the navigator pane remove and then readd the 'Using Asset Catalog' for app icons - this will recreate an empty app-icon set
    3. Select your desired sizes and assign the correct images by dragging from the navigation pane
    4. Delete CFBundleIconFiles keys (there is a second one for iPad)
    5. Rebuild archive
    0 讨论(0)
  • 2020-12-29 01:24

    This error can have several causes as it seems. In my case, two Icon Files had the wrong pixel dimensions (generated by cordova). So you might check that.

    0 讨论(0)
  • 2020-12-29 01:26

    In order for me to fix this issue I had to add again one icon image.

    The error mentioned 'CFBundleIcons':AppIcon40x40 file and when I checked the Images.xcassets under the AppIcon image set the image the Iphone Spotlight IOS 7-9 40pt was in fact with the wrong resolution so I dragged again from Finder the icon with 80x80 resolution (40x40 multiplied by the scale factor 2x).

    0 讨论(0)
  • 2020-12-29 01:28

    I basically went into the info.plist and removed the icons that I didn't need. I started out with the Cocos2d template and didn't need most of them, so I deleted them all. When I archived the program and went to validate it, it gave errors such as "where is this icon and that icon?" Well, I deleted them all. But in the info.plist all 13 icons were still listed, so I just removed all the ones I deleted.

    0 讨论(0)
  • 2020-12-29 01:31

    Your recipe work's perfectly.

    For my part,

    I've select NameOfMyApp-info.plist in the Supporting Files.

    I've only have to open the Key: Icon files.

    I've just deleted all the string of image. (The error message in the Submit was exactly about those images.

    I've try submiting again and : Submit Successful.

    Thank's

    0 讨论(0)
  • 2020-12-29 01:32

    My solution was: in 'build phases', under 'copy bundle resources', click '+' and choose all your icons.

    good luck.

    0 讨论(0)
提交回复
热议问题