diff --git a/android/app/build.gradle b/android/app/build.gradle index f8bdb9f2..ca56c586 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -49,8 +49,8 @@ android { // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration. minSdkVersion 21 targetSdkVersion 34 - versionCode 8 - versionName '1.2.1' + versionCode 9 + versionName '1.2.2' } signingConfigs { diff --git a/lib/new_views/pages/settings_page.dart b/lib/new_views/pages/settings_page.dart index 0e8a5f53..52990914 100644 --- a/lib/new_views/pages/settings_page.dart +++ b/lib/new_views/pages/settings_page.dart @@ -46,7 +46,7 @@ class _SettingsPageState extends State { void checkForLocalAuth(bool buttonState) async { bool authStatus = await _settingProvider.auth.authenticate( localizedReason: Platform.isAndroid ? "Scan your fingerprint to authenticate" : "Scan with face id to authenticate", - options: AuthenticationOptions(biometricOnly: Platform.isAndroid), + options: AuthenticationOptions(), authMessages: [ IOSAuthMessages( cancelButton: 'cancel', diff --git a/lib/new_views/pages/splash_page.dart b/lib/new_views/pages/splash_page.dart index 25c20858..9b5d0e36 100644 --- a/lib/new_views/pages/splash_page.dart +++ b/lib/new_views/pages/splash_page.dart @@ -74,7 +74,7 @@ class _SplashPageState extends State { Future checkDualAuthentication() async { return await _settingProvider.auth.authenticate( localizedReason: Platform.isAndroid ? "Scan your fingerprint to authenticate" : "Scan with face id to authenticate", - options: AuthenticationOptions(biometricOnly: Platform.isAndroid), + options: AuthenticationOptions(), ); }