Commit f18083d4 authored by Todd Volkert's avatar Todd Volkert Committed by GitHub

Print ADB output when `adb install` fails (#10933)

Fixes #10929
parent 8f07a586
......@@ -276,6 +276,7 @@ class AndroidDevice extends Device {
}
if (installResult.exitCode != 0) {
printError('Error: ADB exited with exit code ${installResult.exitCode}');
printError('$installResult');
return false;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment