Build Error While Converting Python File Into Apk Using Buildozer
Solution 1:
We need to install ia32libs. use " sudo apt-get install ia32-libs " command on ubuntu. I got this question's answer on IRC channel of kivy and it worked for me. Initially i have not installed it as it is for 32-bit system. They said that android tools still require us to download and install ia32-libs on 64bit systems.
Solution 2:
This is a fairly generic error that could cover a few different things. Could you paste the full log from buildozer (including with the --verbose option, or log_level = 2
in your buildozer.spec.
You can also do some basic troubleshooting, like check you have the build dependencies installed. I'm not sure which ones could cause this, maybe make sure you have javac (via openjdk probably).
Solution 3:
Zlib development package is installed?
You can try:
sudo apt-get install zlib1g-dev
Or some missing packages.
Post a Comment for "Build Error While Converting Python File Into Apk Using Buildozer"