3
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 3 years have passed since last update.

[Flutter]ビルドエラー「Invalid depfile」の解消法

Posted at

エラー内容

Invalid depfile: C:\Users\...\flutter_practice\.dart_tool\flutter_build\49d8ab87ff629688917c92475373e2cc\kernel_snapshot.d

対処方法

  1. main.dartファイルのimport 'dart:html';を削除 (未使用の場合)
  2. コンソールからflutter cleanを実行

補足

Invalid depfileのエラー自体はflutter cleanで解決します。
しかし、その後Not found: 'dart:html'のエラーが出ました。
その対策としてimport 'dart:html';を削除したところ、再びInvalid depfileのエラーが出ました。
結論として、対処方法に上げたような内容が適切そうです。

3
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
3
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?