By JSupport
via javasrilankansupport.com
Submitted: Mar 19 2013 / 16:50
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
Add your comment