2

I have Ubuntu 12.04 LTS.

After following the official steps to install Android SDK and ADT bundle on a Linux machine, I wasn't able to run the SDK as some of the binaries in it needed 32 bit libraries.

Almost all the highly voted answers to this quandary in this forum and elsewhere suggest the installation of ia32-libs.

For reasons, I simply could not install ia32-libs. I had this exact problem 6 months ago, at which I was able to follow the solution provided here to install this package. But now even this doesn't work anymore and the error being package not available.

So instead of installing (or trying to install) ia32-libs, I would like to install the minimal set of 32 bit libraries that are needed by the Android SDK for my 64 bit Ubuntu 12.04 OS. So what is this minimal set?

From my initial search the minimal set seems to be: lib32z1, lib32ncurses5, lib32bz2-1.0, lib32stdc++6. But I am not sure.

1 Answers1

1

From my initial search the minimal set seems to be:

lib32z1, lib32ncurses5, lib32bz2-1.0, lib32stdc++6.

After installing the above 4 packages, the Android SDK binaries were all happy on my machine.

I feel the exact answer could be a subset of the above 4.

All I can state is that sudo apt-get install-ing the above 4 has installed the required libraries for the 32-bit SDK binaries on my 64 bit machine without having to install the ia32-libs package.