0
0

More than 3 years have passed since last update.

Cannot run with sound null safety, because the following dependencies don't support null safety:

Posted at

現象

エミュレータでflutterアプリを実行しようとすると下記エラー

Error: Cannot run with sound null safety, because the following dependencies
don't support null safety:

 - package:sqflite
 - package:sqflite_common
 - package:synchronized

For solutions, see https://dart.dev/go/unsound-null-safety

解決策

pubspec.yamlで引っ張ってくるsqfliteのバージョンを上げることでnull safetyに対応できるようにしました。

pubspec.yaml
dependencies:
  flutter:
    sdk: flutter
#  sqflite: ^1.3.0
  sqflite: ^2.0.0+3



image.png
0
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
0
0