Android studio cannot find aapt

允我心安 提交于 2019-11-28 17:27:32
omegacore

Aapt is a 32bit application. I am running ubuntu 64bit. I needed some additional libraries. First thing I did was update to 13.04 from 12.10. It broke chrome but this should help.

To get aapt working (this fixed my issues with the avd as well) just run these two commands:

sudo apt-get install lib32stdc++6
sudo apt-get install lib32z1

From this post.

Now no more problems.

You can try this :-

sudo apt-get install lib32stdc++6 lib32z1 lib32z1-dev

Just open your Terminal & run this

sudo apt-get install lib32stdc++6 lib32z1

Actually it was a architecture problem. Aapt expects 32 bit binaries and my system is 64 bits.

Using Android Studio 0.3.7 on 64-bit Debian 7... this worked for me:

sudo apt-get install libc6-i386 sudo dpkg --add-architecture i386 sudo apt-get update sudo apt-get install ia32-libs

Building with Gradle is fine. Debugging and running the emulator is fine (although still slow as usual).

The package (32-bit) you are looking for is libbz2-1.0:i386, its 64-bit version is libbz2-1.0:amd64.

At first enable multi-arch support (if not done already):

sudo dpkg --add-architecture i386

Now run:

sudo apt-get update

You can now install the package by:

sudo apt-get install lib32stdc++6
sudo apt-get install lib32z1
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!