Skip to content Skip to sidebar Skip to footer

Android Sdk Issues Ubuntu 10.04lts

I have looked through the other questions on here, and on other forums. The answers didn't help my issue. I originally started out with 11.10 but thought there could be a bug or so

Solution 1:

You're problem is entirely different than the one posted by robertly, although I'm sure you've found it using google.

You're running 64bit ubuntu and forgot to run the following command.

apt-get install ia32-libs

The phones aren't 64bit, so there is no 64bit version of adb. You need the ia32-libs.

After this is done, open eclipse and go to Windows -> Android SDK Manager then, uninstall all the tools(under tools sub folder) and reinstall them.

You should no longer get the adb error.

Source: http://developer.android.com/sdk/installing.html#troubleshooting

Solution #2 - I had to do this because sudo apt-get remove eclipse didn't remove it completely and it still cause errors. Doing all of this, combined with the step above solved my problem the other night.

Delete eclipse, android folders sudo apt-get remove eclipse sudo add-apt-repository "deb http://archive.canonical.com/ lucid partner" sudo apt-get update sudo apt-get install sun-java6-jre sun-java6-plugin sudo update-alternatives --config java Reinstall eclipse 3.7.1, android-sdk-linux folder Proceed with normal installation.

Solution 2:

Head on over here, it looks to be the same problem, but with a different package. Eclipse Indigo - Cannot install Android ADT Plugin

This is assuming you haven't seen that yet. If you are still having problems, I can look into it further for you.

Post a Comment for "Android Sdk Issues Ubuntu 10.04lts"