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

Commit f8d9d366 authored by Sudheer Shanka's avatar Sudheer Shanka
Browse files

Pass the packages installed to vold when the user starts.

Bug: 111890351
Test: n/a
Change-Id: Id54e18b718b2b87830f7be3b313058c33ded51a8
parent 1eca4803
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);