Skip to content

Instantly share code, notes, and snippets.

@niieq
Last active August 29, 2015 14:07
Show Gist options
  • Save niieq/b71840a91b190e185c17 to your computer and use it in GitHub Desktop.
Save niieq/b71840a91b190e185c17 to your computer and use it in GitHub Desktop.

#Installation Guide for Android SDK / ADT Bundle on Windows

To setup the Android SDK on windows,

  1. Installing Java Development Kit

    • Download the Java SE Development Kit from here
    • Install the JDK environment with default settings
  2. Installing Android ADT Bundle

    • Download the lastest version of ADT from here
    • Unzip the file to a required destination
  3. Setting Up Android ADT Bundle

    • Open the eclipse folder and double click on the eclipse file to run eclipse ide
    • Double click on the SDK_Manager.exe to download extra APIs, documentation and samples

#Setting up Google App Engine on windows

To setup the Google App Engine on windows,

  1. Python

    • Python is a requirement for getting the Google App Engine software on your system
    • To check if python is installed on your system, open your command prompt and type python.
    • You will get an interactive window if it is installed or might prompt you it can't be found.
    • Thus to install python, download from link
  2. App Engine

    • Navigate to app engine setup to download the sdk installer
    • Follow up with the installer process and install the sdk on your system
  3. Creating a Hello World with Appengine

    • Create a new folder called apps and create a subfolder called appenginetry

    • Create a file and name it app.yaml and put in this content
      application: enginetry
      version: 1
      runtime: python
      api_version: 1
      handlers:
      - url: /.*
      script: index.py

    • Create an index.py file and put in

        ` print "hello world" `
      
  4. Running Application

    • Start GoogleAppEngineLauncher program from application
    • When it opens, Click File then Add Existing Application
    • Navigate to the apps directory and select appenginetry
    • Once added, select it and click on the Run button
    • Now open the link in your browser
@nenepadi
Copy link

Great Job

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment