Closed
Description
This commit makes my app crash on screen rotation. In src/templates/AndroidManifest.tmpl.xml line 32 :
...{% if android_api >= 13 %}|screenSize{% endif %}"
...{% if args.min_sdk_version >= 13 %}|screenSize{% endif %}"
should be :
{% if args.sdk_version >= 13 %}|screenSize{% endif %}"
if we want to keep the same behavior. Otherwise, app with auto rotating screen will now crash on rotation if "android.minapi" in buildozer.spec is not set to at least 13.
...{% if args.sdk_version >= 13 %}|screenSize{% endif %}"
Metadata
Metadata
Assignees
Labels
No labels