From b2995ddfab44e842c3845e2d092bb68f93de623d Mon Sep 17 00:00:00 2001 From: davidtsadler Date: Wed, 1 Aug 2012 21:37:20 +0100 Subject: Start new article. --- ...1-installing-the-android-sdk-on-ubuntu.markdown | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 _site_build/_posts/2012-08-01-installing-the-android-sdk-on-ubuntu.markdown (limited to '_site_build') diff --git a/_site_build/_posts/2012-08-01-installing-the-android-sdk-on-ubuntu.markdown b/_site_build/_posts/2012-08-01-installing-the-android-sdk-on-ubuntu.markdown new file mode 100644 index 0000000..cd24fea --- /dev/null +++ b/_site_build/_posts/2012-08-01-installing-the-android-sdk-on-ubuntu.markdown @@ -0,0 +1,30 @@ +--- +layout: post +title: Installing the Android SDK on Ubuntu +author: David T. Sadler +description: This guide will show you how to install the Android SDK and the Eclipse IDE on Ubuntu. +categories: ["Android","Ubuntu"] +robots: follow, noodp, noydir, noarchive +comments: true +google_plus: true +twitter_share: true +facebook_like: true +published: false +licensed: true +--- +By the end of this guide you will run a simple "Hello World" application on either the Android emulator or a physical device. + +## Getting started. + +There are a few things that we require before we can install the SDK. We need the Java Development Kit (JDK) which provides tools such as a Java compiler that allow us to develop Java applications. The Java Runtime Environment (JRE) is needed so that Java programs, such as Eclipse, can run on your system. Apache Ant is needed if you wish to build Android applications outside of an IDE. + +{% highlight bash %} +sudo apt-get update +sudo apt-get install ant default-jdk default-jre -y +{% endhighlight %} + +Google provide an archive of the SDK for downloading. Since it is very likely that the SDK has been updated since this post was written you should check the website for the current version number. + +{% highlight bash %} +wget http://dl.google.com/android/android-sdk_r20.0.1-linux.tgz +{% endhighlight %} -- cgit v1.2.3-13-gbd6f