Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Show output during aab support check, as p4a may require the user input #1494

Merged
merged 1 commit into from Aug 30, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion buildozer/targets/android.py
Expand Up @@ -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:
Expand Down