Runs the adb binary from the detected SDK directory, passing all arguments straight to it. This is intended as a convenience function if adb is not in your $PATH.
(self, args)
| 1225 | sys.stdout.flush() |
| 1226 | |
| 1227 | def adb(self, args): |
| 1228 | """Runs the adb binary from the detected SDK directory, passing all |
| 1229 | arguments straight to it. This is intended as a convenience |
| 1230 | function if adb is not in your $PATH. |
| 1231 | """ |
| 1232 | self._adb(args.unknown_args) |
| 1233 | |
| 1234 | def logcat(self, args): |
| 1235 | """Runs ``adb logcat`` using the adb binary from the detected SDK |