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

Commit d345955d authored by Song Chun Fan's avatar Song Chun Fan
Browse files

[pm/archive] fix isAppArchivable appOps check on HSUM

Change-Id: If7c32f285b51adccdd95cd8172424db8b32866a5
BUG: 311276817
FIXES: 311276817
Test: atest CtsPackageManagerTestCases:android.content.pm.cts.PackageInstallerArchiveTest#isAppArchivable_appOptedOut
parent ac4ccc5f
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -704,7 +704,8 @@ public class PackageArchiver {
            return false;
        }

        if (isAppOptedOutOfArchiving(packageName, ps.getAppId())) {
        if (isAppOptedOutOfArchiving(packageName,
                    UserHandle.getUid(userId, ps.getAppId()))) {
            return false;
        }