且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

壳牌和SBT运行AAPT程序在Android SDK中

更新时间:2023-02-08 19:58:09

它看起来像你想运行在64位操作系统的32位二进制。也许你错过了所需的共享库。尝试运行文件AAPT LDD ./aapt 来看看它说。

It looks like you're trying to run a 32-bit binary on a 64-bit OS. Maybe you're missing the required shared libraries. Try running file aapt and ldd ./aapt to see what it says.

如果是这样的话然后再安装IA32-库可以修复它​​,因为没有64比特的二进制程序。

If this is the case then installing ia32-libs could fix it, as there are no 64-bit binaries available.

sudo apt-get install ia32-libs