Skip to content Skip to sidebar Skip to footer

Buildozer Compiles Simple Android Kivy Application, But Fails While Packaging

This is the output of buildozer: buildozer android debug # Check configuration tokens # Ensure build layout # Check configuration tokens # Preparing build # Check requirements for

Solution 1:

By default, buildozer looks for a line in your main.py of the form __version__ = 'something'. This is used to set the apk version, a required field.

You can either add this line to your main.py, or comment out the version check and uncomment the alternative version method on the next lines of buildozer.spec. This lets you set the version string in buildozer.spec itself.

Solution 2:

Post a Comment for "Buildozer Compiles Simple Android Kivy Application, But Fails While Packaging"