im having trouble including an icon for my app on flutter, instead of showing the png file, is only showing a deep black color
even when the success alert shows up and rebuilding my app in debug mode.
it doesnt show anything at all
my pubspec.yaml
:
flutter_launcher_icons: ^0.14.2
dev_dependencies:
flutter_test:
sdk: flutter
flutter_lints: ^4.0.0
flutter_launcher_icons:
android: "launcher_icon"
ios: true
image_path: "assets/htv_remove.png"
adaptative_icon_backfround: "assets/fffff0.png"
next im executing dart run flutter_launcher_icons
and the output is:
Built flutter_launcher_icons:flutter_launcher_icons.
════════════════════════════════════════════
FLUTTER LAUNCHER ICONS (v0.14.2)
════════════════════════════════════════════
• Creating default icons Android
• Adding a new Android launcher icon
• Creating mipmap xml file Android
WARNING: Icons with alpha channel are not allowed in the Apple App Store.
Set "remove_alpha_ios: true" to remove it.
• Overwriting default iOS launcher icon with new icon
No platform provided
✓ Successfully generated launcher icons
so next im deleting my app from my phone and rebuilding in debug mode but is not working at all
am i doing it wrong ? or is there is something that im overlooking
2