Building this project

Generally there are two ways for building Android projects. Either with Eclipse and the AVD plugin or independently from an IDE with Ant-scripts form the command line.

Building this project with Ant

  1. Download and install the Android SDK according the official documentation: http://developer.android.com/sdk/installing/index.html

  2. Add the "tools" and "platform-tools" directories from the SDK to the executable path of your system.

  3. Run the following commands inside the root directory of this (AAT) project.
    android list targets
    android update project --name AAT --path . --target X
    Where X is an ID listed by the first command. This will create the android ant scripts.

  4. Build the project with the commands:
    ant clean
    ant debug
    If you are lucky this will create "bin/aat-debug.apk".

Building this project with Eclipse

  1. Download and install the Android SDK as described in above section.

  2. Install Eclipse

  3. Install the ADT plugin from within Eclipse. Help->Install new software

  4. In Window->Preferences->Compiler set JDK Compliance to 1.6

  5. Import AAT: