summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordavidtsadler <davidtsadler@googlemail.com>2012-08-01 21:37:20 +0100
committerdavidtsadler <davidtsadler@googlemail.com>2012-08-01 21:37:20 +0100
commitb2995ddfab44e842c3845e2d092bb68f93de623d (patch)
treed09a983d818ae55ed23c6174c3828b0cabe34803
parent3725c72dae91a73ec61c32745bffd40f901eadff (diff)
Start new article.
-rw-r--r--_site_build/_posts/2012-08-01-installing-the-android-sdk-on-ubuntu.markdown30
1 files changed, 30 insertions, 0 deletions
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 <a href="http://developer.android.com/sdk/index.html" rel="external nofollow" target="_blank" title="Go to the Android SDK website">website</a> for the current version number.
+
+{% highlight bash %}
+wget http://dl.google.com/android/android-sdk_r20.0.1-linux.tgz
+{% endhighlight %}