//Written by: Gilberto Perez
//Last Modified 2/21/2012
/*
 * This is a temporary readme file for the installation of the Android emulator.
 */
1) Download the Android SDK <http://developer.android.com/sdk/index.html>. 
2) Add to your PATH the following:
	ANDROID_HOME=~/android-sdk-macosx
	PATH=${PATH}:ANDROID_HOME/platforms/android-15/:~ANDROID_HOME/platform-tools/:ANDROID_HOME/tools/
3) Run Android and install the newest Android distribution(as of the last update: android-15)
4) Navigate to the project directory and run Android update project ./
5) Run ant debug.
6) Initiate an emulator by entering:
	1) android list targets (this will produce a list of available of system image targets)
	2) android create avd -n <name> -t<targetID> (Choose targetID to match android-15)
7) Start up the emulator by entering: emulator -avd <avd_name>
8) Install the app by entering: adb install <path_to_your_bin>.apk

The app should be installed and ready to run from the virtual device!
