若手エンジニアの趣味ブログ

flutter create時の「No option specified for the output directory.」エラー解消

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."

参考文献

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

PHP Code Snippets Powered By : XYZScripts.com