From 1a7191e0e456c6e6efc721a07b31c3becdc32126 Mon Sep 17 00:00:00 2001 From: Mirko Galimberti Date: Tue, 30 Aug 2022 17:52:47 +0200 Subject: [PATCH] Show output during aab support check, as p4a may require the user input (#1494) --- buildozer/targets/android.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildozer/targets/android.py b/buildozer/targets/android.py index 2e8238454..34364b5e8 100644 --- a/buildozer/targets/android.py +++ b/buildozer/targets/android.py @@ -320,7 +320,7 @@ def check_configuration_tokens(self): super().check_configuration_tokens(errors) def _p4a_have_aab_support(self): - returncode = self._p4a(["aab", "-h"], break_on_error=False, show_output=False)[2] + returncode = self._p4a(["aab", "-h"], break_on_error=False)[2] if returncode == 0: return True else: