Merge "Skip the "--abi" flag on "adb install" if present."

This commit is contained in:
Narayan Kamath 2014-06-03 09:58:23 +00:00 committed by Gerrit Code Review
commit 4e26c95a63
1 changed files with 2 additions and 0 deletions

View File

@ -1743,6 +1743,8 @@ int install_app(transport_type transport, char* serial, int argc, char** argv)
} else if (!strcmp(argv[i], "--key")) {
verify_apk = 0;
i++;
} else if (!strcmp(argv[i], "--abi")) {
i++;
}
}