Search code examples
iosxcodeitunesxcasset

Error submitting to iTunes. CFBundleIcons: AppIcon120x120


I've got the following error when I submit my app to iTunes with Xcode: “Ivalid image path – No image found at the path references under key 'CFBundleIcons': 'AppIcon120x120'”

I'm using xcassets for app icons.

enter image description here


Solution

  • After an hour of modifying plists and recreating assets, it turns out that the problem was with CarPlay icon. It appears as AppIcon120x120~car.png inside the application bundle, but it seems that for some reason Apple validation service expects it to be AppIcon120x120.png.

    Removing the CarPlay icon fixed the problem.

    enter image description here