flutter create時にエラーが発生
flutter create -t app --org co.jp.WeTravel --description "It is an application that fully supports your travel. Currently under development.
上記コマンドでFlutterプロジェクトを作成しようとしたら下記のエラーが発生しました。
No option specified for the output directory.
Create a new Flutter project.
If run on a project that already exists, this will repair the project, recreating any files that are missing.
---省略---
Run "flutter help" to see global options.
解決
ドメイン後ろにプロジェクト名を指定するのを忘れているだけでした。
flutter create -t app --org co.jp.WeTravel {アプリ名がない}
最終的には下記コマンドで成功しました。
flutter create --org co.jp.WeTravel we_travel --description "It is an application that fully supports your travel. Currently under development."
コメントを残す