diff options
author | Jeff Brown <jeffbrown@google.com> | 2014-04-15 23:36:32 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-04-15 23:36:32 +0000 |
commit | 2ca6a1a7eb08a9f46745308d13663ecb93d7b68a (patch) | |
tree | ec984deee3eaf6d4c90adddfc88a1aa6c814641a | |
parent | 8481765738b404053ad52dcbfb567e813d587043 (diff) | |
parent | 83ec00108676fa66cec470e886b87384bdf1e6a2 (diff) | |
download | system_core-2ca6a1a7eb08a9f46745308d13663ecb93d7b68a.zip system_core-2ca6a1a7eb08a9f46745308d13663ecb93d7b68a.tar.gz system_core-2ca6a1a7eb08a9f46745308d13663ecb93d7b68a.tar.bz2 |
am 83ec0010: am a77bef47: Document the adb install -d option.
* commit '83ec00108676fa66cec470e886b87384bdf1e6a2':
Document the adb install -d option.
-rw-r--r-- | adb/commandline.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/adb/commandline.c b/adb/commandline.c index 83b568d..e0345a8 100644 --- a/adb/commandline.c +++ b/adb/commandline.c @@ -137,10 +137,11 @@ void help() " adb forward --remove <local> - remove a specific forward socket connection\n" " adb forward --remove-all - remove all forward socket connections\n" " adb jdwp - list PIDs of processes hosting a JDWP transport\n" - " adb install [-l] [-r] [-s] [--algo <algorithm name> --key <hex-encoded key> --iv <hex-encoded iv>] <file>\n" + " adb install [-l] [-r] [-d] [-s] [--algo <algorithm name> --key <hex-encoded key> --iv <hex-encoded iv>] <file>\n" " - push this package file to the device and install it\n" " ('-l' means forward-lock the app)\n" " ('-r' means reinstall the app, keeping its data)\n" + " ('-d' means allow version code downgrade)\n" " ('-s' means install on SD card instead of internal storage)\n" " ('--algo', '--key', and '--iv' mean the file is encrypted already)\n" " adb uninstall [-k] <package> - remove this app package from the device\n" |