Open4
FlutterSecureStorage

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,
);

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

暗号処理は、 ciphers で行われているので、これに準拠すれば複合可能