Index: /issm/trunk-jpl/externalpackages/android-sdk/install.sh
===================================================================
--- /issm/trunk-jpl/externalpackages/android-sdk/install.sh	(revision 11967)
+++ /issm/trunk-jpl/externalpackages/android-sdk/install.sh	(revision 11968)
@@ -62,10 +62,11 @@
 
 if [[ $step == "3" ]]; then
-	#Here we will start up our default emulator to test that it is working properly.
+    #Here we will start up our default emulator to test that it is working properly.
     #Once the device has booted we will use the Android Debug Bridge tool to gain
     #a terminal in our device.
 
 	cd $present_dir/install-sdk/tools
-	./emulator -avd $default_droid &
+	./emulator -avd $default_droid -sdcard ~/issm/trunk-jpl/externalpackages/android-emulators/test &
+
     cd ../platform-tools
     ./adb wait-for-device shell
Index: /issm/trunk-jpl/externalpackages/triangle/configs/android/configure.make
===================================================================
--- /issm/trunk-jpl/externalpackages/triangle/configs/android/configure.make	(revision 11968)
+++ /issm/trunk-jpl/externalpackages/triangle/configs/android/configure.make	(revision 11968)
@@ -0,0 +1,19 @@
+# This makefile configures build process to cross-compile to the android platform.
+# The binary tools referenced below are specifically configuered to target armeabi-v7a.
+# Furthermore, the compilers (which are simply wrappers around GNU GCC) are set to
+# produce binaries that are EABI complient.
+#
+# Note that the AAPCS standard defines 'EABI' as a moniker used to specify
+# a _family_ of similar but distinct ABIs. Android follows the little-endian
+# ARM GNU/Linux ABI as documented in the following document:
+#
+# http://www.codesourcery.com/gnu_toolchains/arm/arm_gnu_linux_abi.pdf
+
+ANDROID_BIN=$(ISSM_TIER)/src/android/tmp/android-14-toolchain/bin
+CC=$(ANDROID_BIN)/arm-linux-androideabi-gcc
+AR=$(ANDROID_BIN)/arm-linux-androideabi-ar
+RANLIB=$(ANDROID_BIN)/arm-linux-androideabi-ranlib
+CSWITCHES = $(CFLAGS)  -I/usr/X11R6/include -L/usr/X11R6/lib -I$(MATLAB_DIR)/extern/include -fPIC -I$(MATLAB_DIR)/include
+TRILIBDEFS = -DTRILIBRARY
+OBJ_EXT=o
+LIB_EXT=a
