Merge "[pm] return original error message for abi install failures" into sc-dev

This commit is contained in:
TreeHugger Robot
2021-03-02 20:20:26 +00:00
committed by Android (Google) Code Review

View File

@@ -20100,7 +20100,7 @@ public class PackageManagerService extends IPackageManager.Stub
} catch (PackageManagerException pme) {
Slog.e(TAG, "Error deriving application ABI", pme);
throw new PrepareFailure(INSTALL_FAILED_INTERNAL_ERROR,
"Error deriving application ABI");
"Error deriving application ABI: " + pme.getMessage());
}
}