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

Commit f60d8ab3 authored by Jeff Sharkey's avatar Jeff Sharkey
Browse files

Better error message when no UID allocated.

Test: builds, boots
Bug: 34355942
Change-Id: I6062dc542d9088f34b5cb8ddac197cc34a970278
parent 830d4b42
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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");
        }
    }