flutter_launcher_icons icon indicating copy to clipboard operation
flutter_launcher_icons copied to clipboard

[BUG] The app icon set "AppIcon" has an unassigned child.

Open angelocapone opened this issue 3 years ago • 2 comments

Flutter version: 2.2.2 Xcode version: 12.5 flutter_launcher_icons: ^0.9.0

I see the following warning on Xcode under Runner > Runner > Assets.xcassets > AppIcon

[email protected] Unassigned Screen Shot 2021-06-18 at 08 55 44

angelocapone avatar Jun 18 '21 07:06 angelocapone

@angelocapone This error occurs when there is a mismatch in the file name registered under Contents.json and the actual image's filename.

To resolve this, In the file ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json, find out the entry where size is 1024x1024 and replace the filename as [email protected].

Following is the complete snippet of that json entry:

{ "size" : "1024x1024", "idiom" : "ios-marketing", "filename" : "[email protected]", "scale" : "1x" }

SmitSonani avatar Jul 06 '21 14:07 SmitSonani

I had been deleted the whole Contents.json file, and got Asset validation failed every times I trying upload to apple store connect

JackHuang111 avatar Aug 11 '22 09:08 JackHuang111