Merge "Better error message when no UID allocated."

This commit is contained in:
TreeHugger Robot
2017-02-24 19:47:53 +00:00
committed by Android (Google) Code Review

View File

@@ -887,9 +887,9 @@ final class Settings {
}
if (p.appId < 0) {
PackageManagerService.reportSettingsProblem(Log.WARN,
"Package " + p.name + " could not be assigned a valid uid");
"Package " + p.name + " could not be assigned a valid UID");
throw new PackageManagerException(INSTALL_FAILED_INSUFFICIENT_STORAGE,
"Creating application package " + p.name + " failed");
"Package " + p.name + " could not be assigned a valid UID");
}
}