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

Commit 26facd1a authored by Lyn Han's avatar Lyn Han Committed by Android (Google) Code Review
Browse files

Merge "Source aconfig when PHASE_BOOT_COMPLETED" into main

parents ba7a5b50 35c1abca
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -2826,9 +2826,6 @@ public class NotificationManagerService extends SystemService {
            mAssistants.onBootPhaseAppsCanStart();
            mConditionProviders.onBootPhaseAppsCanStart();
            mHistoryManager.onBootPhaseAppsCanStart();
            if (expireBitmaps()) {
                NotificationBitmapJobService.scheduleJob(getContext());
            }
            registerDeviceConfigChange();
            migrateDefaultNAS();
            maybeShowInitialReviewPermissionsNotification();
@@ -2837,6 +2834,10 @@ public class NotificationManagerService extends SystemService {
        } else if (phase == SystemService.PHASE_DEVICE_SPECIFIC_SERVICES_READY) {
            mPreferencesHelper.updateFixedImportance(mUm.getUsers());
            mPreferencesHelper.migrateNotificationPermissions(mUm.getUsers());
        } else if (phase == SystemService.PHASE_BOOT_COMPLETED) {
            if (expireBitmaps()) {
                NotificationBitmapJobService.scheduleJob(getContext());
            }
        }
    }