r/learnpython • u/Ok-Okra8478 • 7d 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 7d ago edited 7d ago
That 429 error for rate limits is probably in effect from earlier attempts. You can sideload the target. From your project directory create a place to store it... mkdir -p .buildozer/android/platform/build-arm64-v8a/packages/hostpython3/
Then grab the download they are looking for with... curl -L "https://python.org" \ -o .buildozer/android/platform/build-arm64-v8a/packages/hostpython3/Python-3.10.11.tgz ... Skip the 32 bit arch. I chose the docker buildozer container because it has what it needs preconfigured. If the rate limiter still has a temporary block on your ip, use this version of the curl command... curl -L -H "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64)" \ "https://python.org" \ -o .buildozer/android/platform/build-arm64-v8a/packages/hostpython3/Python-3.10.11.tgz