diff options
| author | 2022-11-19 00:42:10 +0000 | |
|---|---|---|
| committer | 2022-11-19 00:42:10 +0000 | |
| commit | d12a8cf7cb7ab1bdec331cfe0b67c88fec268cfc (patch) | |
| tree | e26084178cc590ad205c30648ae0710c789e39a8 | |
| parent | a5a9546399ba7d9ce76945078cb63661d60ed26e (diff) | |
| parent | ac64da2fd507a4c97288ccdf21ec8099019b03b2 (diff) | |
Merge "Move SysUI boot-complete event earlier" into tm-qpr-dev am: 06191a4c6e am: ac64da2fd5
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/20509295
Change-Id: Id0d9cb94555eb3a02c443ec34aa9fbe491b7d04e
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/SystemUIApplication.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/SystemUIApplication.java b/packages/SystemUI/src/com/android/systemui/SystemUIApplication.java index 0e7deeb69f9b..ffdd861aac73 100644 --- a/packages/SystemUI/src/com/android/systemui/SystemUIApplication.java +++ b/packages/SystemUI/src/com/android/systemui/SystemUIApplication.java @@ -113,7 +113,8 @@ public class SystemUIApplication extends Application implements setTheme(R.style.Theme_SystemUI); if (Process.myUserHandle().equals(UserHandle.SYSTEM)) { - IntentFilter bootCompletedFilter = new IntentFilter(Intent.ACTION_BOOT_COMPLETED); + IntentFilter bootCompletedFilter = new + IntentFilter(Intent.ACTION_LOCKED_BOOT_COMPLETED); bootCompletedFilter.setPriority(IntentFilter.SYSTEM_HIGH_PRIORITY); // If SF GPU context priority is set to realtime, then SysUI should run at high. |