Resources:
Http://askubuntu.com/questions/147400/problems-with-eclipse-and-android-sdk
Http://serverfault.com/questions/442792/ubuntu-12-04-apt-get-install-ia32-libs-unmet-dependencies
http://my.oschina.net/uoy/blog/129108
I am running the adb and AAPT tips under the Android SDK directory on 64-bit Debian: bash:./aapt:no such file or directory
This is because the files of the Android SDK are compiled in a 32-bit library and cannot be found on a 64-bit system .
Solution:
First execution: sudo apt-get install lib32stdc++6
At this point, you can see that the ADB is running smoothly, but AAPT still cannot run the hint error while loading shared libraries:libz.so
Execute now: sudo apt-get install lib32z1 Lib32z1-dev
Run AAPT, you are done.
64-bit Linux systems cannot run the Android SDK for ADB and AAPT, suggesting no such file or directory solutions