-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
android app crash on screen rotation #379
Comments
indeed setting android.minapi=13 fixes the issue for me. |
I've been having the same issue, and setting android.minapi=13 also fixed it for me. I'm on Android 5.0.2. |
This is fixed in #382. |
AndreMiras
added a commit
to AndreMiras/GuyPS
that referenced
this issue
Dec 28, 2015
Android minimum API set to 13, Fixes rotation crash, refs kivy/python-for-android#379
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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 %}"
The text was updated successfully, but these errors were encountered: