summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulia Reynolds <juliacr@google.com>2022-05-16 15:28:24 -0400
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-11-11 21:35:52 +0000
commitfcbb2394a8e92facbd786839ddf6eb4c79a98e6d (patch)
tree066a44de816ee54f7baf5fcd1d222304c08d012f
parent053c3a792e71c0a8782edb75931142c6e1aefcd4 (diff)
downloadbase-fcbb2394a8e92facbd786839ddf6eb4c79a98e6d.tar.gz
Move service initialization
Occasionally ILockSettings can fail to be initialized otherwise Fixes: 232714129 Test: boot (and eventually bootstress/reboot-long) Change-Id: I2f9f9bdba37f4ebfaea56c1a6662f0474ae8a002 Merged-In: I2f9f9bdba37f4ebfaea56c1a6662f0474ae8a002 (cherry picked from commit 8e278543bd290d4b6c417758554d6dee93a4fe74) (cherry picked from commit 14d7f081c8d44c8e4150e1276aa8d5e2c6c67d58) Merged-In: I2f9f9bdba37f4ebfaea56c1a6662f0474ae8a002
-rwxr-xr-xservices/core/java/com/android/server/notification/NotificationManagerService.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/services/core/java/com/android/server/notification/NotificationManagerService.java b/services/core/java/com/android/server/notification/NotificationManagerService.java
index aa03fd9203e2..ea4c5c4d3ea7 100755
--- a/services/core/java/com/android/server/notification/NotificationManagerService.java
+++ b/services/core/java/com/android/server/notification/NotificationManagerService.java
@@ -1759,7 +1759,6 @@ public class NotificationManagerService extends SystemService {
}
}
- private LockPatternUtils mLockPatternUtils;
private StrongAuthTracker mStrongAuthTracker;
public NotificationManagerService(Context context) {
@@ -1979,7 +1978,6 @@ public class NotificationManagerService extends SystemService {
ServiceManager.getService(Context.PLATFORM_COMPAT_SERVICE));
mUiHandler = new Handler(UiThread.get().getLooper());
- mLockPatternUtils = new LockPatternUtils(getContext());
mStrongAuthTracker = new StrongAuthTracker(getContext());
String[] extractorNames;
try {
@@ -2419,7 +2417,7 @@ public class NotificationManagerService extends SystemService {
bubbsExtractor.setShortcutHelper(mShortcutHelper);
}
registerNotificationPreferencesPullers();
- mLockPatternUtils.registerStrongAuthTracker(mStrongAuthTracker);
+ new LockPatternUtils(getContext()).registerStrongAuthTracker(mStrongAuthTracker);
} else if (phase == SystemService.PHASE_THIRD_PARTY_APPS_CAN_START) {
// This observer will force an update when observe is called, causing us to
// bind to listener services.