Android studio cannot find aapt

omegacore picture omegacore · Sep 21, 2013 · Viewed 21.7k times · Source

Hi I am having trouble compiling, I get this error:

Gradle: Execution failed for task ':ElectronicComponentInventorySearch:mergeDebugResources'.

java.io.IOException: Cannot run program "/opt/android-studio/sdk/build-tools/android- 4.2.2/aapt": error=2, No such file or directory

When I use locate: /opt/android-studio/sdk/build-tools/android-4.2.2/aapt

Before I tried anything I made sure to chown the whole android-studio directory to my account and set permissions for everything to 775.

Whats up?

Answer

omegacore picture omegacore · Sep 21, 2013

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.