From 0cdc138ba31896e2968d792e24e36b6afa2baff1 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 30 Oct 2019 08:08:15 -0400 Subject: [PATCH] dont immediatly prompt biometric when locked --- src/App/App.xaml.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/App/App.xaml.cs b/src/App/App.xaml.cs index b1d5576ce..286b7e1e1 100644 --- a/src/App/App.xaml.cs +++ b/src/App/App.xaml.cs @@ -396,6 +396,11 @@ namespace Bit.App autoPromptFingerprint = false; } } + else if(autoPromptFingerprint && Device.RuntimePlatform == Device.Android && + _deviceActionService.UseNativeBiometric()) + { + autoPromptFingerprint = false; + } PreviousPageInfo lastPageBeforeLock = null; if(Current.MainPage is TabbedPage tabbedPage && tabbedPage.Navigation.ModalStack.Count > 0) {