Merge "Recovers on boot when scan of data app fails" into qt-dev

This commit is contained in:
TreeHugger Robot
2019-04-16 21:19:33 +00:00
committed by Android (Google) Code Review

View File

@@ -2801,6 +2801,11 @@ public class PackageManagerService extends IPackageManager.Stub
if (disabledPs.codePath == null || !disabledPs.codePath.exists()
|| disabledPs.pkg == null) {
possiblyDeletedUpdatedSystemApps.add(ps.name);
} else {
// We're expecting that the system app should remain disabled, but add
// it to expecting better to recover in case the data version cannot
// be scanned.
mExpectingBetter.put(disabledPs.name, disabledPs.codePath);
}
}
}