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?

Flutterでリリースビルドにおいてのみ灰色の表示(エラー)がある時

Posted at

デバッグビルドではなぜかエラーとして表示されないエラー。(本来なら赤背景に黄色字のやつのはず)
AppStoreに提出したものをインストールしてから判明した涙
AppStoreに提出したもの=リリースビルドなので、リリースビルドで確認を行うが、
リリースビルドではログに出ない可能性があるので、main関数に
FlutterError.onError = (FlutterErrorDetails details) {
FlutterError.dumpErrorToConsole(details);
};
を追加したうえで、
flutter run --release --dart-define-from-file=scripts/flavors/prd.json
でリリースビルドしてログを取って対応。恐らく以下の通り

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?