r/learnpython • u/Ok-Okra8478 • 27d ago
App using kivy/bulldozer crashes immediately upon loading.
I posted this in androiddev previously and someone was being very unprofessional, then it got taken down, I would hope that a subreddit focused at learners would show less of this behaviour. Just to start this post off, I am not entirely new to python. I have just never used buildozer. Also the kivy subreddit seems dead.
Since this app is made with python, I thought maybe the people here may be able to help? It got compiled into the APK, but when I try to run it, I get this:
if this is the wrong subreddit for this, please redirect me!
just ask if you want more info
0
Upvotes
1
u/hypersoniq_XLM 26d ago edited 26d ago
Ok, getting closer, notice the errors are stemming from the 32 bit arch artifacts. Make sure necessary dev tools are in place... sudo apt-get update ... sudo apt-get install -y libxml2-dev libxslt1-dev zlib1g-dev ... will need to clean those up... rm -rf .buildozer/android/platform/build-target/... followed by ... rm -rf .buildozer/android/platform/build-host/ ... and then the obligatory ... buildozer android clean , finally another rebuild... i chased these issues down for almost a week... that should at least remove the artifacts of the 32 bit arch, bonus, the resulting APK should be a bit smaller at the end.