From f03fb486ac089bf68ae3bfe7b6687dd4b928a340 Mon Sep 17 00:00:00 2001 From: Xavier Ducrohet Date: Mon, 31 Aug 2009 16:40:30 -0700 Subject: Add error output to pm for FAILED_MISSING_FEATURE Change-Id: Ib9955b69b69db7d442402ab33e148cb40dec3d40 --- cmds/pm/src/com/android/commands/pm/Pm.java | 3 +++ 1 file changed, 3 insertions(+) (limited to 'cmds') diff --git a/cmds/pm/src/com/android/commands/pm/Pm.java b/cmds/pm/src/com/android/commands/pm/Pm.java index fd9e708..7adaf57 100644 --- a/cmds/pm/src/com/android/commands/pm/Pm.java +++ b/cmds/pm/src/com/android/commands/pm/Pm.java @@ -546,6 +546,9 @@ public final class Pm { case PackageManager.INSTALL_FAILED_CPU_ABI_INCOMPATIBLE: s = "INSTALL_FAILED_CPU_ABI_INCOMPATIBLE"; break; + case PackageManager.INSTALL_FAILED_MISSING_FEATURE: + s = "INSTALL_FAILED_MISSING_FEATURE"; + break; case PackageManager.INSTALL_PARSE_FAILED_NOT_APK: s = "INSTALL_PARSE_FAILED_NOT_APK"; break; -- cgit v1.1