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

IosIos7Application Loader

Ios Problem Overview


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 updated the app to make it iOS7-compatible. But the Application Loader always returned this type of error to me. I searched the Internet and found that I am not alone. So I created this post and hopefully what I found out about the app icons can help other people.

Ios Solutions


Solution 1 - Ios

Sounds like you may, like me, have accepted the suggestion by XCode 5.0 to migrate your icon files to a catalog.

When you do that, you need to remove the CFBundleIconFile ("Icon file") parameter from your project's .plist file. That's the old way of doing this, and once you've migrated your icon files, obviously that parameter is incorrect.

Strange that XCode's migration doesn't fix this for you automatically. Would have been so very Apple to help you out there.

Solution 2 - Ios

If your app supports iOS 5.0 and up, moving all icon files to the Asset Catalog will work.

If your app still needs to support lower versions of iOS (like mine), the solution is to use the CFBundleIconFiles key in the project plist file. In my case, my app is an iPhone-only app, so I did the following:

  1. Prepare 8 icon files: two app icons for iOS6 and earlier (57x57 and 114x114), two icons for iOS7 (60x60 and 120x120), two icons for spotlight search/settings for iOS 6 and earlier (29x29 and 58x58), and two icons for spotlight (40x40 and 80x80). The files must be PNG files. Name these files whatever you want, but the high-resolution file name must in the form of [email protected]
  2. In the project plist file, edit the CFBundleIconFiles key (which is an array) to include the names of the above icon files. Only the low resolution file names are needed, and the extension (.png) should not be included. The Xcode will automatically find the high resolution files as long as their names follow the convention (with @2x).
  3. Make sure your project does not contain the Asset Catalog folder
  4. If you did the above things right, when you check the "General" section of the app target, you should see that Xcode has listed all the icon files in right place under the "app icons" section.
  5. If your app needs to support iOS 3.1 and earlier, you need to make four extra icon files. The size and the name of these files are as follows: Icon.png (57x57), [email protected] (114x114), Icon-Small.png (29x29), [email protected] (58x58). The fixed names are required by iOS and cannot be changed. But as long as you name the icon files that way, you don't need to do any extra things.

After these steps, you should not have any problems with the icons when uploading your app to the App Store.

The Asset Catalog simplies some of the above steps, e.g, generating low resolution icon files (my guess).

I got the above info from "iOS Human Interface Guidelines", "iOS app programming guide" and "information property list reference". Search for "app icons" and everthing is explained.

Solution 3 - Ios

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

good luck.

Solution 4 - Ios

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

Solution 5 - Ios

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

Solution 6 - Ios

Found the same issue while building Cordova project.

Removing CFBundleIcon with icon.png in info.plist cleared the issue for me

Solution 7 - Ios

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.

Solution 8 - Ios

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).

Solution 9 - Ios

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.

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
QuestionJulia ZhaoView Question on Stackoverflow
Solution 1 - IosWytzeView Answer on Stackoverflow
Solution 2 - IosJulia ZhaoView Answer on Stackoverflow
Solution 3 - IosElia WeissView Answer on Stackoverflow
Solution 4 - IosShakeManView Answer on Stackoverflow
Solution 5 - Iosuser38932View Answer on Stackoverflow
Solution 6 - IosAmal T SView Answer on Stackoverflow
Solution 7 - Iosuser3271769View Answer on Stackoverflow
Solution 8 - IostaviView Answer on Stackoverflow
Solution 9 - IososxdirkView Answer on Stackoverflow