Setup for application development
right click and save images for bigger version- Installing Java
JAVA JDK Download
- In the system variables I made a new variable called it
JAVA_HOME
, and I set the value to:C:\Program Files\Java\jdk1.7.0_79
. - After that, I edited
PATH
, which is also in the system variables and I added :;%JAVA_HOME%\bin
. - In command prompt enter
javac -version,
if you see a return messagejavac 1.7.0_79
or something similar you can continue, I cant tell you how important it is to get this right, just know that things will go wrong at unexpected times.

Installing Android SDK
ANDROID SDK download
- List item In the system variables I made a new variable called it
ANDROID_HOME
, and I set the value to:C:\Program Files (x86)\Android\android-sdk
. - After that, I edited
path
, which is also in the system variables and I added :
%ANDROID_HOME/tools%
%ANDROID_HOME%platform-tools
- In command prompt enter
android
if this opens the android SDK manager it works again please don’t continue if this is not working correctly.
Installing NodeJS
NODEJS download
- Just run the installer, node isn’t an asshole like these other programs.
Installing Apache Ant
APACHE ANT download
- List item In the system variables I made a new variable called it
ANT_HOME
, and I set the value to:C:\ant
. - After that, I edited
path
, which is also in the system variables and I added :
%ANT_HOME/bin%
Comments