フラッター用のランチャー アイコンを作成したいと考えています。私の構成 (pubspec.yaml) は次のようになります。
...
# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^1.0.2
flutter_spinkit: ^5.1.0
url_launcher: ^6.0.17
http: ^0.13.4
intl: ^0.17.0
flutter_launcher_icons: ^0.9.2
flutter_icons:
android: true
ios: true
image_path: "assets/logo_blue.png"
...
コンソールから flutter_launcher_icon をインストールしました ( flutter pub add flutter_launcher_icons
)。その後、構成 (上記参照) を pubspec.yaml ファイルに追加し、コンソールに次の 2 つのコマンドを入力しました。
flutter pub get
flutter pub run flutter_launcher_icons:main
ドキュメント ( https://pub.dev/packages/flutter_launcher_icons ) で説明されているように。しかし、2 番目のコマンドの後、次のエラー メッセージが表示され、pub は終了コード 255 で終了しました。
════════════════════════════════════════════
FLUTTER LAUNCHER ICONS (v0.9.1)
════════════════════════════════════════════
✓ Successfully generated launcher icons
Unhandled exception:
FormatException: Invalid number (at character 1)
^
#0 int._handleFormatError (dart:core-patch/integers_patch.dart:129:7)
#1 int.parse (dart:core-patch/integers_patch.dart:55:14)
#2 minSdk (package:flutter_launcher_icons/android.dart:309:18)
#3 createIconsFromConfig (package:flutter_launcher_icons/main.dart:94:47)
#4 createIconsFromArguments (package:flutter_launcher_icons/main.dart:60:7)
#5 main (file:///C:/Users/chris/AppData/Local/Pub/Cache/hosted/pub.dartlang.org/flutter_launcher_icons-0.9.2/bin/main.dart:6:26)
#6 _delayEntrypointInvocation.<anonymous closure> (dart:isolate-patch/isolate_patch.dart:295:32)
#7 _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:192:12)
pub finished with exit code 255
私は何を間違っていますか?
ありがとう!