【发布时间】:2021-10-01 16:24:17
【问题描述】:
【问题讨论】:
标签: flutter
【问题讨论】:
标签: flutter
确保您已在android/app/src/main/AndroidManifest.xml 中设置应用图标路径
android:icon="@mipmap/ic_launcher"
【讨论】:
android\app\src\main\res\mipmap中生成。你能告诉我mipmap-hdpi中的图像文件的名称是什么。
android:icon="@mipmap/ic_launcher"
试试下面的代码希望对你有帮助。
在您的 pubspec.yaml 文件中添加以下包
flutter_launcher_icons: ^0.9.2
添加以下代码 pubspec.yaml 文件
flutter_icons:
image_path: "assets/icon.png"
android: true
ios: true
然后运行下面的命令
flutter pub run flutter_launcher_icons:main
【讨论】: