We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbfc134 commit eb16a59Copy full SHA for eb16a59
1 file changed
pythonforandroid/toolchain.py
@@ -772,10 +772,10 @@ def apk(self, args):
772
if build_type == 'auto':
773
info('Selecting java build tool:')
774
if exists('gradlew'):
775
- build_type == 'gradle'
+ build_type = 'gradle'
776
info(' Building with gradle, as gradle executable is present')
777
else:
778
- build_type == 'ant'
+ build_type = 'ant'
779
info(' Building with ant, as no gradle executable detected')
780
781
if build_type == 'gradle':
0 commit comments