Skip to content Skip to sidebar Skip to footer

Buildozer 0.32 Fails To Build

After downloading the official Buildozer VM from the kivy project (https://kivy.org/#download)and updating it like in the README of the VM suggested (https://kivy.org/docs/guide/pa

Solution 1:

Installing the most recent dev version (0.33dev) from github in a new (Ubuntu) vm solved the problem for me.

These are the commands from https://kivy.org/docs/guide/packaging-android.html:

cd ~
git clone https://github.com/kivy/buildozer.git
cd buildozer
sudo python2.7 setup.py install

Don't forget the buildozer requirements: https://buildozer.readthedocs.io/en/latest/installation.html#targeting-android

Keep in mind to delete the buildozer.spec and .buildozer/. After creating the new buildozer.spec you'll have to 'enable' the line #android.bootstrap = sdl2 and add hostpython2 as requirement. This is due to a known Bug: https://github.com/kivy/python-for-android/issues/620

Running buildozer the first time will result in some missing packages. Just install them.

If you are using shared folders with the vm, errors may occur. Just copy the files to local VM storage in such a case.

Post a Comment for "Buildozer 0.32 Fails To Build"