Ok admittely that subject line isn't proper english.
I've gotten a kivy based apk packaged with python-for-android, but I can't seem to set the orientation to portrait. When I start it on the phone, the splashscreen starts as portrait but then it flips to landscape when the app starts. Config reports the width as 800 and height as 600, but setting them to other values doesn't seem to work.
I can't tell what I'm missing, perhaps an event I need to listen to. The same code did work with earlier versions of kivy / buildozer, but those build environments are gone now, so I've rebuilt with newer versions of everything. So I'm thinking something changed in the meantime.
Are there specific events I need to listen for on startup?
It uses:
Latest version (as of this writing) of Android SDK command line tools : 3.3.1
NDK version: r17c
Android build-tools: r28.0.3
python-for-android: 0.7.0
android platform 2.6
kivy 1.10.1
apk build command:
p4a apk --private . --package=com.testpackage --name "test app" --version 0.1 --bootstrap=sdl2 --requirements=python2,android,kivy --release --sdk-dir /jdk --ndk-dir /ndk/android-ndk-r17c --android-api 26 --ndk-api 21 --dist-name=kivy-build --orientation=portrait
any help much appreciated
Ray