Android tutorial - Android Installation - android app development - android studio - android development tutorial



  • Android supports java, c++, c# etc. language to develop android applications.
  • Java is the officially supported language for android.
  • All the android examples of this site are developed using Java language and Eclipse IDE.
  • Here, we are going to tell you, the required softwares to develop android applications using Eclipse IDE.
  • android installation
There are two ways to install android.
  1. By ADT Bundle
  2. By Setup Eclipse Manually

By ADT Bundle:

  • Setting up Android Studio is fairly straightforward and is easier than ever thanks to nearly everything being bundled into one installer.
  • Download Android Studio from the below URL https://developer.android.com/ and you’ll get not only Android Studio but also the Android SDK, the SDK manager and more.
  • Install Java Development Kit, which you can download from the below URL, http://www.oracle.com/ Remember, Android Studio is only really your window into Java! Note: Android Studio and the SDK are rather large, so make sure you have some space free on your C:\ drive before you get started.
 Download Android Studio
  • Follow the simple instructions during installation and it should also set you up with an Android platform that you will be able to develop with as well.
  • Be sure to tick the checkbox to tell the installer that you want the Android SDK as well and make a note of where Android Studio itself and the SDK are being installed. These are the defaults that it selects in installation:
 Android Studio Installation Paths
  • Pick a directory for the SDK that has no spaces in it. Note that the AppData folder that Android Studio has selected here is a hidden folder in Windows.
  • That means you’ll need to select ‘Show Hidden Folders’ if you want to browse to it using the explorer.

Setup Android for Eclipse IDE

Below is the list of software required to setup android for eclipse IDE manually.
  1. Install the JDK
  2. Download and install the Eclipse for developing android application
  3. Download and Install the android SDK
  4. Intall the ADT plugin for eclipse
  5. Configure the ADT plugin
  6. Create the AVD
  7. Create the hello android application

1) Install the Java Development Kit (JDK)

2) Download and install the Eclipse IDE

3) Download and install the android SDK

 android sdk manager

Latest version of Android SDK

 android sdk lastest version

 android sdk manager packages

4) Download the ADT plugin for eclipse

  • ADT (Android Development Tools) is required for developing the android application in the eclipse IDE. It is the plugin for Eclipse IDE that is designed to provide the integrated environment.
For downloading the ADT, you need to follow these steps:
  1. Start the eclipse IDE, then select Help > Install new software...
  2. In the work with combo box, write https://dl-ssl.google.com/android/eclipse/
 ADT Eclipse Plugin

 ADT Eclipse Plugin Installation
  1. select the checkbox next to Developer Tools and click next button
  2. You will see, a list of tools to be downloaded here, click next button
  3. click finish button
  4. After completing the installation, restart the eclipse IDE

5) Configuring the ADT plugin

After the installing ADT plugin, now tell the eclipse IDE for your android SDK location. To do so:
  1. Select the Window menu > preferences
  2. Select the android from the left panel. Here you may see a dialog box asking if you want to send the statistics to the google. Click proceed button
  3. Click on the browse button and locate your SDK directory. By default, the SDK location is C:\Program Files\Android\android-sdk .
  4. Click apply button to proceed further.

6) Create an Android Virtual Device (AVD)

For running the android application in the Android Emulator, you need to create and AVD. For creating the AVD:
  1. Select the Window menu > AVD Manager
  2. Click on the new button, to create the AVD
  3. Now a dialog appears, write the AVD name e.g. wikitechyavd. Now choose the target android version e.g. android2.2.
  4. click the create AVD
 android virtual device manager

Related Searches to Android Installation