I just went through this myself (on kubuntu 8.10), here's the gotchas I came across:
I got the sun java 6 for my development.
sudo apt-get install sun-java6-jdk
I made it my default java as well
sudo update-java-alternatives -s java-6-sun
Get eclipse 3.4. eclipse 3.2 is the latest in the repository (as of this writing).
wget http://download.eclipse.org/technology/epp/downloads/release/ganymede/R/eclipse-java-ganymede-linux-gtk.tar.gz tar xzvf eclipse-java-ganymede-linux-gtk.tar.gz mv eclipse eclipse3.4
Make the sun java 6 jre the eclipse default by editing the eclipse file and moving /usr/lib/jvm/java-6-sun to the top of the list.
sudo emacs /etc/eclipse/java_home
Download the zip file for linux from google
Here's what nailed me the first time around: permissions. Here's what you got to do:
sudo unzip android-sdk-linux_x86-1.1_r1.zip -d ~/libs/
where "~/libs" is wherever you are putting the sdk.Fix permissions on two files:
sudo chmod a+r /opt/android-sdk-linux_x86-1.1_r1/tools/lib/images//userdata.img ~/libs/android-sdk-linux_x86-1.1_r1/tools/lib/images//userdata.img sudo chmod a+r /opt/android-sdk-linux_x86-1.1_r1/tools/lib/images//system.img~/libs/android-sdk-linux_x86-1.1_r1/tools/lib/images//system.img
Thank Diego Torres Milano for that one.Open up your ~/.bashrc file and add the following to your PATH:
ANDROID=andriod-sdk-linux_x86-1.1_r1; export ANDROID PATH=$PATH:~/libs/${ANDROID}/tools:.; export PATHI added an ANDROID variable too, as you can see simply for ease of versioning. That's the only place it's used and it's optional.Fire up eclipse by running
eclipse3.4/eclipse
and follow the install directions from google for getting the plugin.
All of that got me to "Hello Android". The biggest thing was the permissions so I hope that helps. Really it was the stuff I found on Diego's site, and some other sites on getting eclipse 3.4. Thanks, internets.
I've made this a wiki so if I missed anything or could be clearer please update.
Good luck!
