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

Popular posts from this blog

Review : The new Pushtape Installation profile for Drupal 7 - Yay or nay?

AuthorRank: Google Have you heard of Pushtape?  Don't worry me neither.  But after this blog post we will definitely be sure if its a Drupal yay or nay.  The reason I chose this Installation profile as the theme for my post is simple, to make sites for bands in your community is an easy way to get your foot in the web development scene if you are just starting out.  All band sites basically works in the same way which means that you can just duplicate your site structure every time. OK so here we go. Pushtape is a new Installation Profile for Drupal 7 that focuses on musicians, it comes supplied with a discography framework, you can very easily post new events like shows, there is a custom photo gallery where you can upload multiple photos as a set and of course a nice looking news type blog for all those quick updates. The installation was really easy, clean, very well customized and quick. I use WebMatr...