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

Commit f96f79cc authored by Sudheer Shanka's avatar Sudheer Shanka Committed by Android (Google) Code Review
Browse files

Merge "Pass the packages installed to vold when the user starts."

parents ac5d5a0f f8d9d366
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -906,7 +906,7 @@ class StorageManagerService extends IStorageManager.Stub
                    mVold.onUserAdded(user.id, user.serialNumber);
                }
                for (int userId : systemUnlockedUsers) {
                    mVold.onUserStarted(userId);
                    mVold.onUserStarted(userId, getPackagesArrayForUser(userId));
                    mStoraged.onUserStarted(userId);
                }
                mVold.onSecureKeyguardStateChanged(mSecureKeyguardShowing);
@@ -923,7 +923,7 @@ class StorageManagerService extends IStorageManager.Stub
        // staging area is ready so it's ready for zygote-forked apps to
        // bind mount against.
        try {
            mVold.onUserStarted(userId);
            mVold.onUserStarted(userId, getPackagesArrayForUser(userId));
            mStoraged.onUserStarted(userId);
        } catch (Exception e) {
            Slog.wtf(TAG, e);