diff --git a/src/Android/AutofillService.cs b/src/Android/AutofillService.cs index 113e797ed..15e61b98d 100644 --- a/src/Android/AutofillService.cs +++ b/src/Android/AutofillService.cs @@ -69,6 +69,12 @@ namespace Bit.Android public override void OnAccessibilityEvent(AccessibilityEvent e) { + var powerManager = (PowerManager)GetSystemService(PowerService); + if(!powerManager.IsInteractive) + { + return; + } + try { var root = RootInActiveWindow;