From aeb8cf2d2b790aa9bb35f51a46320847b9d60439 Mon Sep 17 00:00:00 2001 From: Marcel Admiraal Date: Sat, 19 Jun 2021 17:46:57 +0100 Subject: [PATCH] Add adb output to error message when install fails (cherry picked from commit de2acbd4955950b5d37eca396b6ec4aadb872578) --- platform/android/export/export.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/android/export/export.cpp b/platform/android/export/export.cpp index c45b09fd4f1..a99c4c1838e 100644 --- a/platform/android/export/export.cpp +++ b/platform/android/export/export.cpp @@ -1935,7 +1935,7 @@ public: err = OS::get_singleton()->execute(adb, args, true, NULL, &output, &rv, true); print_verbose(output); if (err || rv != 0) { - EditorNode::add_io_error("Could not install to device."); + EditorNode::add_io_error("Could not install to device: " + output); CLEANUP_AND_RETURN(ERR_CANT_CREATE); }