Open4

FlutterSecureStorage

ykwsykws

Android EncryptedSharedPreferences を有効にするには次のオプションを指定してあげる必要がある

With v5.0.0 we can use EncryptedSharedPreferences on Android by enabling it in the Android Options like so:

AndroidOptions _getAndroidOptions() => const AndroidOptions(
  encryptedSharedPreferences: true,
);
ykwsykws

デフォルトでは false なので、通常の SharedPreferences に独自の暗号処理で保存されるため、 Android EncryptedSharedPreferencese とは互換性がない