So I have spent some time developing a recipe app: Github I can use with my Raspberry Pi, which works great and I don't mind using a launcher for the raw code there. However I wanted to be able to package the Kivy application as an apk using the buildozer method:
buildozer android debug deploy run
Which compiles successfully and the apk installs fine, however the application crashes after a second, after that I tried using the Kivy Launcher which never seems to recognise my program, so i moved on to trying to run the raw code through Pydroid 3, which has worked in the past for both Kivy and KivyMD however it crashes trying this import which isnt a part of my code:
from android.config import JAVA_NAMESPACE, JNI_NAMESPACE
my buildozer.spec file is:
https://github.com/treencd/RecipeBook/blob/master/buildozer.spec
I eventually tried using:
adb logcat
However the output doesn't seem that helpful or I dont know what i'm looking for.
I could really use some direction on how to go about debugging an application like this.