show/hide this revision's text 2 added 4 characters in body

I just went through this myself (on kubuntu 8.10), here's the gotchas I came across:

  1. I got the sun java 6 for my development.

    sudo apt-get install sun-java6-jdk

  2. I made it my default java as well

    sudo update-java-alternatives -s java-6-sun

  3. 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

  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

  5. Download the zip file for linux from google

  6. 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.

  7. 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.

  8. 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 PATH
    I 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.

  9. 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!

show/hide this revision's text 1 [made Community Wiki]

I just went through this myself (on kubuntu 8.10), here's the gotchas I came across:

  1. I got the sun java 6 for my development.

    sudo apt-get install sun-java6-jdk

  2. I made it my default java as well

    sudo update-java-alternatives -s java-6-sun

  3. 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

  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

  5. Download the zip file for linux from google

  6. 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.

  7. Fix permissions on two files:

    sudo chmod a+r /opt/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
    Thank Diego Torres Milano for that one.

  8. 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 PATH
    I 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.

  9. 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!