我是kivy的新手。当我尝试使用buildozer为Android构建我的应用程序时,我收到以下错误
# Check that aidl can be executed
# Search for Aidl
# Run '/home/khishorebsk/.buildozer/android/platform/android-sdk-20/build-tools/0/aidl'
# Cwd None
# Aidl cannot be executed
#
# You might have missed to install 32bits libs
# Check http://buildozer.readthedocs.org/en/latest/installation.html
#
# Check configuration tokens
#
我尝试使用以下命令安装32个库
sudo pip install --upgrade cython==0.21
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install build-essential ccache git libncurses5:i386 libstdc++6:i386 libgtk2.0-0:i386 libpangox-1.0-0:i386 libpangoxft-1.0-0:i386 libidn11:i386 python2.7 python2.7-dev openjdk-8-jdk unzip zlib1g-dev zlib1g:i386
但我仍然得到同样的错误。有人请帮忙。
答案 0 :(得分:0)
要解决此问题,您首先需要获取有关正在发生的事情的详细信息:
转到您的Android Sdk
目录,例如:
cd ~/Android/Sdk/build-tools/29.0.2
尝试执行aidl
:
./aidl --help
您将收到一条详细的错误消息,它将帮助您解决问题。 在我的特定情况下,错误消息如下:
aidl: error while loading shared libraries: /usr/local/clang_9.0.0/lib/libc++.so: file too short
这是因为我已将/usr/local/clang_9.0.0
添加到文件~/.bashrc
中的PATH中。删除后,问题消失了。