We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27cf0f9 commit f9e2c88Copy full SHA for f9e2c88
pythonforandroid/recipes/android/__init__.py
@@ -38,9 +38,10 @@ def prebuild_arch(self, arch):
38
bootstrap = bootstrap_name = ctx_bootstrap
39
40
is_sdl2 = bootstrap_name in ('sdl2', 'sdl2python3', 'sdl2_gradle')
41
- is_webview = bootstrap_name in ('webview', 'service_only')
+ is_webview = bootstrap_name == 'webview'
42
+ is_service_only = bootstrap_name == 'service_only'
43
- if is_sdl2 or is_webview:
44
+ if is_sdl2 or is_webview or is_service_only:
45
if is_sdl2:
46
bootstrap = 'sdl2'
47
java_ns = u'org.kivy.android'
0 commit comments