5. Steps to get the tools and SDK for creating an environment for Android application.
Android SDK is the most important software that is required to download because it contains a debugger, libraries, an emulator, documentation, sample code and many tutorials. So you can download it from
http://developer.android.com/sdk/index.html.
When the file download is complete, install the Android studio and necessary SDK tools as per Setup Wizard. The below picture shows that it is already installed in the system.
At the time of the installation of Android Studio, it might give an error due to JDK is not installed in the system. To check which version of Java is installed, open a command line and type javac -version.
If the JDK is not available or the version is lower than 1.8, download it from http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html,
When JDK download completes, install it and set a new system variable JAVA_HOME that points to the JDK installed folder.
e.g C:\Program Files\Java\jdk1.8.0_25
To create JAVA_HOME variable, select Start Menu->Computer->System Properties->Advanced System Properties. Open Advanced Tab->Environment Variables.
Thus we have created a complete environment for Android programming.
Before starting programming, we will have to configure the Android SDK Manager. Open Android Studio from the desktop icon display in the above image.
Click on the SDK Manager icon to install the SDK manager.
It manages the various versions of Android SDK which are currently installed on the system.
Each version of the Android OS is identified by an API level number. After installing the above-required APIs provided by Google (Google Map library), finally the environment is complete for Android programming.
Read more articles on Android