Merge "Limit bypass staged installer API to system and shell only" into rvc-dev am: e91800d290

Change-Id: Ia2df2ffa4e5a71d1354912fc8c6df38878ddfb62
This commit is contained in:
TreeHugger Robot
2020-04-23 02:11:06 +00:00
committed by Automerger Merge Worker

View File

@@ -979,6 +979,9 @@ public class PackageInstallerService extends IPackageInstaller.Stub implements
@Override
public void bypassNextStagedInstallerCheck(boolean value) {
if (!isCalledBySystemOrShell(Binder.getCallingUid())) {
throw new SecurityException("Caller not allowed to bypass staged installer check");
}
mBypassNextStagedInstallerCheck = value;
}