1

When I try to validate my app in archive I get an error that tells me
"Invalid Image Path - No image found at the path referenced under key 'CFBundleIconFiles': '144x144'" I get the exact same error aswell with the resolutions 76x76, 152x152 and 120x120.

I created icons in this resolutions and uploaded them in Xcode but I still get this error...

It looks like this: http://screencast.com/t/hNWHqyBHSoz7 And this is my info.plist: http://screencast.com/t/SL0lSG4xhChU

user2611936
  • 35
  • 2
  • 6

2 Answers2

3

Make sure those images are a members of target you are building:

https://i.stack.imgur.com/ZuVe7.jpg

Otherwise they are not gonna be a part of your IPA file.

Also be aware that names are case sensitive - all files you have problems with are lower "i" and working ones are uppercase.

Grzegorz Krukowski
  • 18,081
  • 5
  • 50
  • 71
  • My Xcode show the same as that picture, Now by mistake I did something in the project navigator and when I try to Archive I get errors, please look at my comment bellow – user2611936 Oct 08 '13 at 15:17
  • How about case sensitive names - I see some of them are upper "i" some not ? – Grzegorz Krukowski Oct 08 '13 at 15:19
  • that could be it! Tho my friend I made an horrible misstake, I accidently deleted the files and then put them back but that just gave me many errors, do you mind looking into my other thread? http://stackoverflow.com/questions/19258571/interface-builder-could-not-open-the-document-mainstoryboard-iphone-storyboard Xcode is surely making me crazy.. – user2611936 Oct 08 '13 at 21:19
1

Make sure that you actually have images with those names added to your XCode project. Also, make sure that those images are a part of the Target you are building or else they won't get copied into your application's bundle.

Jonathan Arbogast
  • 9,620
  • 4
  • 35
  • 47