Reputation: 35
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
Upvotes: 1
Views: 4102
Reputation: 19802
Make sure those images are a members of target you are building:
https://i.sstatic.net/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.
Upvotes: 3
Reputation: 9650
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.
Upvotes: 1