1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Flutterのサンプルアプリをビルドする際に依存関係エラーが出た場合

Posted at

Flutterのexampleに含まれているサンプルアプリをビルドしようとした際に、以下のようなエラーが出力され、ビルドができませんでした。

Because test_core <0.2.0 depends on test_api 0.2.0 and flutter_gallery depends on test_api 0.2.1, test_core <0.2.0 is forbidden.
So, because flutter_gallery depends on test_core 0.1.0, version solving failed.

pub get failed (1)

どうやらこれは依存関係のエラーのようなので、以下のコマンドを実行し、最新のパッケージを取得します。

flutter update-packages

これで、Flutterのサンプルアプリをビルドすることができるようになりました。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?