🌟
【Flutter】IOSビルド手順(個人的な備忘録)2021/09/21
アイコンを準備する
アイコン準備は以下のURLを参考にしました。
公式ドキュメント
インストール
flutter pub add flutter_launcher_icons
pubspec.yamlに記載
pubspeck.yaml
dev_dependencies:
flutter_launcher_icons: "^0.8.0"
flutter_icons:
android: "launcher_icon"
ios: true
image_path: "assets/img/icon.png"
android: "launcher_icon"
ios: true
image_path: "assets/img/icon_iOS.png"
image_path_android: "assets/img/icon_Google.png"
image_path_ios: "assets/img/icon_iOS.png"
以下のコマンドを入力すると自動生成
flutter pub run flutter_launcher_icons:main
Runnerを開く
Sigining設定をする
ここで自分のアプリと接続
flutter build ios
xcode→product押してからの⇨Archive
成功してから
Validate App
Discussion