Skip to main content

Application development environment setup

Setup for application development

right click and save images for bigger version

  1. Installing Java
    JAVA JDK Download
In my experience I have found that starting your enviroment setup with java is best.
  1. 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.
  2. After that, I edited PATH, which is also in the system variables and I added : ;%JAVA_HOME%\bin.
  3. In command prompt enter javac -version, if you see a return message javac 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.
enter image description here

Installing Android SDK
ANDROID SDK download
  1. 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.
  2. After that, I edited path, which is also in the system variables and I added :
    %ANDROID_HOME/tools%
    %ANDROID_HOME%platform-tools
  3. 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
  1. Just run the installer, node isn’t an asshole like these other programs.

Installing Apache Ant
APACHE ANT download
  1. List item In the system variables I made a new variable called it ANT_HOME, and I set the value to: C:\ant.
  2. After that, I edited path, which is also in the system variables and I added :
    %ANT_HOME/bin%
    enter image description here

Comments