Tuesday, March 19, 2013

How to Install Android SDK properly in ubuntu 12.04 amd64

0 comments

Android SDK in ubuntu 12.04 amd64


Android SDK is not working properly in ubuntu 12.04 amd64 , because ubuntu 12.04 64-bit dose not   have  ia32-libs package. So it gives adb error on Eclipse like 

error while loading shared libraries: libncurses.so.5: cannot open shared object file: No such file or directory

This can solve by installing  the required libraries which is for i386 version 

Open the terminal and execute following command 

sudo apt-get install libncurses5:i386 libstdc++6:i386 libz1:i386 libc6:i386 libsdl1.2debian:i386


NB: 

If you unable to launch Android emulator, execute the following command which will install ia32-libs package

sudo apt-get install ia32-libs




Read more...