From 0c06eb5017e5888f0452da348d12fc92a767e45d Mon Sep 17 00:00:00 2001 From: Christopher Tate Date: Wed, 6 Mar 2013 16:40:52 -0800 Subject: [PATCH] DO NOT MERGE - Document new -obb flag for adb backup Now that adb backup handles OBB file backup/restore. (Cherrypicked) Change-Id: Ie92b546e3898b62d74f552ab577b7756ad176ee6 --- adb/commandline.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/adb/commandline.c b/adb/commandline.c index a927423b4..27a175498 100644 --- a/adb/commandline.c +++ b/adb/commandline.c @@ -144,12 +144,15 @@ void help() " adb bugreport - return all information from the device\n" " that should be included in a bug report.\n" "\n" - " adb backup [-f ] [-apk|-noapk] [-shared|-noshared] [-all] [-system|-nosystem] []\n" + " adb backup [-f ] [-apk|-noapk] [-obb|-noobb] [-shared|-noshared] [-all] [-system|-nosystem] []\n" " - write an archive of the device's data to .\n" " If no -f option is supplied then the data is written\n" " to \"backup.ab\" in the current directory.\n" " (-apk|-noapk enable/disable backup of the .apks themselves\n" " in the archive; the default is noapk.)\n" + " (-obb|-noobb enable/disable backup of any installed apk expansion\n" + " (aka .obb) files associated with each application; the default\n" + " is noobb.)\n" " (-shared|-noshared enable/disable backup of the device's\n" " shared storage / SD card contents; the default is noshared.)\n" " (-all means to back up all installed applications)\n"