Skip to content

Commit

Permalink
Print ADB output when adb install fails (#10933)
Browse files Browse the repository at this point in the history
Fixes #10929
  • Loading branch information
tvolkert authored Jun 23, 2017
1 parent 8f07a58 commit f18083d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/flutter_tools/lib/src/android/android_device.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit f18083d

Please sign in to comment.