mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
082bc48c32
https://review.lineageos.org/q/topic:P_asb_2022-05 https://review.lineageos.org/q/topic:P_asb_2022-06 https://review.lineageos.org/q/topic:P_asb_2022-07 https://review.lineageos.org/q/topic:P_asb_2022-08 https://review.lineageos.org/q/topic:P_asb_2022-09 https://review.lineageos.org/q/topic:P_asb_2022-10 https://review.lineageos.org/q/topic:P_asb_2022-11 https://review.lineageos.org/q/topic:P_asb_2022-12 https://review.lineageos.org/q/topic:P_asb_2023-01 https://review.lineageos.org/q/topic:P_asb_2023-02 https://review.lineageos.org/q/topic:P_asb_2023-03 https://review.lineageos.org/q/topic:P_asb_2023-04 https://review.lineageos.org/q/topic:P_asb_2023-05 https://review.lineageos.org/q/topic:P_asb_2023-06 https://review.lineageos.org/q/topic:P_asb_2023-07 accounted for via manifest change: https://review.lineageos.org/c/LineageOS/android_external_freetype/+/361250 https://review.lineageos.org/q/topic:P_asb_2023-08 accounted for via manifest change: https://review.lineageos.org/c/LineageOS/android_external_freetype/+/364606 accounted for via patches: https://review.lineageos.org/c/LineageOS/android_system_ca-certificates/+/365328 https://review.lineageos.org/q/topic:P_asb_2023-09 https://review.lineageos.org/q/topic:P_asb_2023-10 https://review.lineageos.org/q/topic:P_asb_2023-11 accounted for via patches: https://review.lineageos.org/c/LineageOS/android_system_ca-certificates/+/374916 https://review.lineageos.org/q/topic:P_asb_2023-12 https://review.lineageos.org/q/topic:P_asb_2024-01 https://review.lineageos.org/q/topic:P_asb_2024-02 https://review.lineageos.org/q/topic:P_asb_2024-03 https://review.lineageos.org/q/topic:P_asb_2024-04 Signed-off-by: Tavi <tavi@divested.dev>
52 lines
2.3 KiB
Diff
52 lines
2.3 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Beverly <beverlyt@google.com>
|
|
Date: Mon, 8 May 2023 16:33:12 +0000
|
|
Subject: [PATCH] On device lockdown, always show the keyguard
|
|
|
|
Manual test steps:
|
|
1. Enable app pinning and disable "Ask for PIN before unpinning" setting
|
|
2. Pin an app (ie: Settings)
|
|
3. Lockdown from the power menu
|
|
Observe: user is brought to the keyguard, primary auth is required
|
|
to enter the device. After entering credential, the device is still in
|
|
app pinning mode.
|
|
|
|
Test: atest KeyguardViewMediatorTest
|
|
Test: manual steps outlined above
|
|
Bug: 218495634
|
|
(cherry picked from https://googleplex-android-review.googlesource.com/q/commit:b23c2d5fb6630ea0da503b937f62880594b13e94)
|
|
Merged-In: I9a7c5e1acadabd4484e58573331f98dba895f2a2
|
|
Change-Id: I9a7c5e1acadabd4484e58573331f98dba895f2a2
|
|
---
|
|
.../systemui/keyguard/KeyguardViewMediator.java | 10 +++++++++-
|
|
1 file changed, 9 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java
|
|
index bac481c8e478..f0d389c15228 100644
|
|
--- a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java
|
|
+++ b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java
|
|
@@ -586,6 +586,13 @@ public class KeyguardViewMediator extends SystemUI {
|
|
notifyHasLockscreenWallpaperChanged(hasLockscreenWallpaper);
|
|
}
|
|
}
|
|
+
|
|
+ @Override
|
|
+ public void onStrongAuthStateChanged(int userId) {
|
|
+ if (mLockPatternUtils.isUserInLockdown(KeyguardUpdateMonitor.getCurrentUser())) {
|
|
+ doKeyguardLocked(null);
|
|
+ }
|
|
+ }
|
|
};
|
|
|
|
ViewMediatorCallback mViewMediatorCallback = new ViewMediatorCallback() {
|
|
@@ -1341,7 +1348,8 @@ public class KeyguardViewMediator extends SystemUI {
|
|
}
|
|
|
|
// if another app is disabling us, don't show
|
|
- if (!mExternallyEnabled) {
|
|
+ if (!mExternallyEnabled
|
|
+ && !mLockPatternUtils.isUserInLockdown(KeyguardUpdateMonitor.getCurrentUser())) {
|
|
if (DEBUG) Log.d(TAG, "doKeyguard: not showing because externally disabled");
|
|
|
|
// note: we *should* set mNeedToReshowWhenReenabled=true here, but that makes
|