user2611936
user2611936

Reputation: 35

Xcode error Invalid Image Path - CFBundleIconFiles 144x144,152x152,76x76 and 120x120

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

Answers (2)

Grzegorz Krukowski
Grzegorz Krukowski

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

Jonathan Arbogast
Jonathan Arbogast

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

Related Questions