Skip to content Skip to sidebar Skip to footer

Android/eclipse Installation On Ubuntu 11.04 - Aapt And Adb Not Working Properly

I am a Linux n00b trying to setup my development environment in Eclipse. I have Eclipse and the Android SDK installed, but I am getting some errors when I start Eclipse or when I t

Solution 1:

Are you sure you followed this guide completely? Do you have ia32-libs installed? Try this:

sudo apt-get install ia32-libs

Solution 2:

I'm on Ubuntu 13.10 64 bit and the above solutions don't quite work (I'm also using Andriod Studio but that shouldn't matter). I guess the issue is that Google's ADK binary is a 32 bit application. This worked for me:

sudo dpkg --add-architecture i386
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 zlib1g:i386

Solution 3:

apt-get install lib32ncurses5 lib32stdc++6

Solution 4:

It depends on the Ubuntu version you running

If you running Ubuntu < 12.04 then run: sudo apt-get install ia32-libs (ia32-libs was deprecated in 12.04)

If you running Ubuntu >= 12.04 then run: apt-get install lib32ncurses5 lib32stdc++6

To check your ubuntu version click on the cog icon in the top right corner and click "About this computer"

Post a Comment for "Android/eclipse Installation On Ubuntu 11.04 - Aapt And Adb Not Working Properly"