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

Commit fd811da4 authored by Matt Pietal's avatar Matt Pietal
Browse files

Temporary logging for rare flake

Keyguard dismiss not happening on some test devices

Bug: 383318506
Test: PlatformScenarioTests LockscreenWithValidPIN#testBypassLocksceenWithValidPIN
Flag: EXEMPT bugfix
Change-Id: I504cc4fb72c9c7e469b371fb4080b139d5d1b94e
parent 7d5db209
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -297,10 +297,13 @@ public class KeyguardPINView extends KeyguardPinBasedInputView {
        DisappearAnimationUtils disappearAnimationUtils = needsSlowUnlockTransition
                        ? mDisappearAnimationUtilsLocked
                        : mDisappearAnimationUtils;
        android.util.Log.i("KeyguardPINView", "startDisappearAnimation: " + finishRunnable);
        disappearAnimationUtils.createAnimation(
                this, 0, 200, mDisappearYTranslation, false,
                mDisappearAnimationUtils.getInterpolator(), () -> {
                    if (finishRunnable != null) {
                        android.util.Log.i("KeyguardPINView",
                                "startDisappearAnimation, invoking run()");
                        finishRunnable.run();
                    }
                },
+2 −0
Original line number Diff line number Diff line
@@ -170,6 +170,8 @@ object KeyguardBouncerViewBinder {

                    launch {
                        viewModel.startDisappearAnimation.collect {
                            android.util.Log.i("KeyguardBouncerViewBinder",
                                    "viewModel.startDisappearAnimation: $it")
                            securityContainerController.startDisappearAnimation(it)
                        }
                    }