Merge "Fix unsuspend from dialog on secondary users" into rvc-dev am: 54f0b9e24c
Change-Id: I2619bc3a95e5a01377648a2a769e1addb085e4e7
This commit is contained in:
@@ -13221,7 +13221,9 @@ public class PackageManagerService extends IPackageManager.Stub
|
||||
|
||||
private void enforceCanSetPackagesSuspendedAsUser(String callingPackage, int callingUid,
|
||||
int userId, String callingMethod) {
|
||||
if (callingUid == Process.ROOT_UID || callingUid == Process.SYSTEM_UID) {
|
||||
if (callingUid == Process.ROOT_UID
|
||||
// Need to compare app-id to allow system dialogs access on secondary users
|
||||
|| UserHandle.getAppId(callingUid) == Process.SYSTEM_UID) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user