- 2022年4月10日
[Flutter]android:exported needs to be explicitly specified for <activity> への対応
Flutter をAndroidで開発中に「android:exported needs to be explicitly specified for
Flutter をAndroidで開発中に「android:exported needs to be explicitly specified for
2021年11月から更新してなかったFlutterのプロジェクトを2022年3月にAndroidで実行しようとすると、エラーが連続で発生した。せっかくなので、記録を残します。 【2023/11/18追記】Flutter 3.16.0 でも動作確認。動画を追加。 環境 2022/03/21に実施。 >flutter doctor Doctor summary (to see all detai […]
問題点 Flutterにて、「Use a function declaration to bind a function to a name」という警告が出ました。 ソース ラムダ式で書いていたFunctionを、中括弧形式にしたら、警告が消えた。 発生中 Status Function(String? value) _convertStatus = (String? value) => S […]