8000 android app crash on screen rotation · Issue #379 · kivy/python-for-android · GitHub
[go: up one dir, main page]

Skip to content
android app crash on screen rotation #379
Closed
@sladinji

Description

@sladinji

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      0