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

Commit 986fb680 authored by Yi-an Chen's avatar Yi-an Chen Committed by Automerger Merge Worker
Browse files

Merge "Skip checking allowlist for non-system apps" into tm-qpr-dev am: 753e2699

parents 0d11e6f8 753e2699
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3268,7 +3268,7 @@ public class PermissionManagerServiceImpl implements PermissionManagerServiceInt
        if (Objects.equals(packageName, PLATFORM_PACKAGE_NAME)) {
            return true;
        }
        if (!pkg.isPrivileged()) {
        if (!(pkg.isSystem() && pkg.isPrivileged())) {
            return true;
        }
        if (!mPrivilegedPermissionAllowlistSourcePackageNames