Upload to iTunes error. CFBundleIcons: AppIcon120x120

I have the following error when I submit my app to iTunes using Xcode: "Ivalid Image Path - Image is missing from the path links under the key" CFBundleIcons ":" AppIcon120x120 ""

I am using xcassets for app icons.

enter image description here

+3


source to share


2 answers


After an hour of changing the plates and recreating the assets, it turns out that the problem is with the CarPlay icon. It looks like AppIcon120x120 ~ car.png inside the app bundle, but it looks like Apple's validation service expects it to be AppIcon120x120.png for some reason.

Removing the CarPlay icon fixed the issue.



enter image description here

+7


source


You don't need to remove the CarPlay icon if you don't want to. I also had a similar problem and it was indeed the CarPlay icon that was causing the problem. To fix the problem, I went into my archive and renamed AppIcon120x120 ~ car.png to AppIcon120x120.png, and then it passed validation without delay.



+1


source







All Articles