You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add the android adb command which would just forward the arguments to adb and pipe the output/exit code.
The command should accept XHarness arguments still (like -v or -h) and only forward the PassThroughArguments which are deliminated by -- so for example:
xharness android adb -v -- devices list
We should make sure we run ADB in the same way we run programs in Apple, so with a ProcessManager
We need to make sure we pipe the output well and not buffer it in memory to prevent common CLI issues
Once this is finished, we should remove the --adb options from the android state command (revert that whole change)
The text was updated successfully, but these errors were encountered:
Context
Sometimes we want to use the bundled ADB directly. Currently, we can call
android state --adb
to get path to the ADB executable and then run that.Follow up of #724
Goals
android adb
command which would just forward the arguments to adb and pipe the output/exit code.-v
or-h
) and only forward thePassThroughArguments
which are deliminated by--
so for example:ProcessManager
--adb
options from theandroid state
command (revert that whole change)The text was updated successfully, but these errors were encountered: