We are now in the stage where we will start our learning curve on Android, and first things first. We need to prepare our development platform.
My assumptions are the following:
This is it, now stay tuned for Part 2 coming soon!
My assumptions are the following:
- Ubuntu 11.10 Desktop (12.04 just got released, I just never install it out of the oven, I always wait for a month or so before using it, so that I can install a more stable proven release); and...
- Ubuntu has been prep (here are a couple of very useful links: 10 Things to do after Installing Ubuntu 11.10, 15 Things I did after Installing New Ubuntu 11.10 Oneiric Ocelot)
- There is no Java JDK installed
- Internet connectivity!
- On a terminal window add the following commands:
sudo apt-get install openjdk-6-jre
sudo apt-get install icedtea6-plugin
sudo apt-get install openjdk-6-jdk - Download and Install the Android Development Kit:
Download the Android SDK Starter Package
Instructions on Installing the SDK - Untar, unzip, and install (this is the latest version to the date of this post):
cd *
tar -xzvf android-sdk_r18-linux.tgz
sudo mv android-sdk-linux/ /opt
cd /opt
sudo ln -s android /opt/android-sdk-linux
sudo chown -R (your-user-id):(your-user-group-id)
NOTE I recommend to install in /opt (which is what I did), yet you can do it where ever you may want. - Now execute the installer:
cd tools
./android - Select Android 2.2 latest revision and the Android SDK download will begin!
This is it, now stay tuned for Part 2 coming soon!