Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f4976b31 authored by Robert Snoeberger's avatar Robert Snoeberger
Browse files

Retry auth during tap on lock screen.

Bug: 130327361
Test: manual - tap on lock screen after failure causes retry of auth
Change-Id: I30f9197811da3023ed6afe47dc77c8244b3d8c73
parent e288f13f
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -56,6 +56,7 @@ import com.android.internal.logging.MetricsLogger;
import com.android.internal.logging.nano.MetricsProto.MetricsEvent;
import com.android.keyguard.KeyguardClockSwitch;
import com.android.keyguard.KeyguardStatusView;
import com.android.keyguard.KeyguardUpdateMonitor;
import com.android.systemui.DejankUtils;
import com.android.systemui.Dependency;
import com.android.systemui.Interpolators;
@@ -154,6 +155,7 @@ public class NotificationPanelView extends PanelView implements
    private final NotificationWakeUpCoordinator mWakeUpCoordinator;
    private final PulseExpansionHandler mPulseExpansionHandler;
    private final KeyguardBypassController mKeyguardBypassController;
    private final KeyguardUpdateMonitor mUpdateMonitor;

    @VisibleForTesting
    protected KeyguardAffordanceHelper mAffordanceHelper;
@@ -382,6 +384,7 @@ public class NotificationPanelView extends PanelView implements
        });
        mThemeResId = context.getThemeResId();
        mKeyguardBypassController = bypassController;
        mUpdateMonitor = KeyguardUpdateMonitor.getInstance(mContext);
        dynamicPrivacyController.addListener(this);

        mBottomAreaShadeAlphaAnimator = ValueAnimator.ofFloat(1f, 0);
@@ -2423,6 +2426,7 @@ public class NotificationPanelView extends PanelView implements
            onUnlockHintFinished();
            return;
        }
        mUpdateMonitor.requestFaceAuth();
        super.startUnlockHintAnimation();
    }