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

Commit bd2ed2e3 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix getPackagesForUidInternal for known isolated compute apps to return...

Merge "Fix getPackagesForUidInternal for known isolated compute apps to return owner package name" into main
parents 7c3df898 2bf6865d
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -1994,6 +1994,9 @@ public class ComputerEngine implements Computer {
        if (Process.isSdkSandboxUid(uid)) {
            uid = getBaseSdkSandboxUid();
        }
        if(isKnownIsolatedComputeApp(uid)) {
            uid = getIsolatedOwner(uid);
        }
        final int appId = UserHandle.getAppId(uid);
        return getPackagesForUidInternalBody(callingUid, userId, appId, isCallerInstantApp);
    }