Merge "Do not check for APEX and APK package name collisions during normal boot" into qt-dev

am: 060b4115db

Change-Id: Ic4447850e7e47bb3c6732a9bfecaf7a9cea922ab
This commit is contained in:
Nikita Ioffe
2019-05-07 20:26:49 -07:00
committed by android-build-merger

View File

@@ -11726,7 +11726,12 @@ public class PackageManagerService extends IPackageManager.Stub
"Code and resource paths haven't been set correctly");
}
if (mApexManager.isApexPackage(pkg.packageName)) {
// Check that there is an APEX package with the same name only during install/first boot
// after OTA.
final boolean isUserInstall = (scanFlags & SCAN_BOOTING) == 0;
final boolean isFirstBootOrUpgrade = (scanFlags & SCAN_FIRST_BOOT_OR_UPGRADE) != 0;
if ((isUserInstall || isFirstBootOrUpgrade)
&& mApexManager.isApexPackage(pkg.packageName)) {
throw new PackageManagerException(INSTALL_FAILED_DUPLICATE_PACKAGE,
pkg.packageName + " is an APEX package and can't be installed as an APK.");
}