Index: /issm/trunk-jpl/src/mobile/android/ISSM_APP/res/layout/settingsmenu.xml
===================================================================
--- /issm/trunk-jpl/src/mobile/android/ISSM_APP/res/layout/settingsmenu.xml	(revision 14514)
+++ /issm/trunk-jpl/src/mobile/android/ISSM_APP/res/layout/settingsmenu.xml	(revision 14515)
@@ -67,4 +67,4 @@
              android:layout_height="wrap_content"
              android:layout_below="@+id/sealvlBar"
-             android:text="Parameters" /> 
+             android:text="Done" /> 
     </RelativeLayout>
Index: /issm/trunk-jpl/src/mobile/android/ISSM_APP/src/gov/nasa/jpl/issm/ISSM.java
===================================================================
--- /issm/trunk-jpl/src/mobile/android/ISSM_APP/src/gov/nasa/jpl/issm/ISSM.java	(revision 14514)
+++ /issm/trunk-jpl/src/mobile/android/ISSM_APP/src/gov/nasa/jpl/issm/ISSM.java	(revision 14515)
@@ -251,5 +251,5 @@
 			super.onPostExecute(null);
 			dialog.setCancelable(true);
-			dialog.setMessage("Loading View. Please Wait ...");
+			dialog.setMessage("Running ISSM simulation. Please Wait ...");
 			dialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
 			dialog.setProgress(0);
Index: /issm/trunk-jpl/src/mobile/native/Main.cpp
===================================================================
--- /issm/trunk-jpl/src/mobile/native/Main.cpp	(revision 14514)
+++ /issm/trunk-jpl/src/mobile/native/Main.cpp	(revision 14515)
@@ -67,5 +67,5 @@
 	}
 	/*}}}*/
-	void Solve(JNIEnv *env, jclass clazz , jdouble alpha, jobject buf){ /*{{{*/
+	void Solve(JNIEnv *env, jclass clazz , jdouble alpha, jdouble temperature, jobject buf){ /*{{{*/
 
 		int i,count;
@@ -84,4 +84,7 @@
 		/*reset basal friction to what it was before: */
 		__android_log_print(ANDROID_LOG_INFO, "Native","alpha %g ",alpha);
+		/*reset basal temperature to what it was before: */
+		__android_log_print(ANDROID_LOG_INFO, "Native","temperature %g ",temperature);
+
 		InputDuplicatex(fm->elements,fm->nodes,fm->vertices,fm->loads,fm->materials,fm->parameters,AndroidFrictionCoefficientEnum,FrictionCoefficientEnum);
 
@@ -161,5 +164,5 @@
 	{
 			{"createISSMModel"   ,"(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)I"  , (void *) Initialize},
-			{"solveISSMModel", "(DLjava/nio/DoubleBuffer;)V", (void *) Solve}
+			{"solveISSMModel", "(DDLjava/nio/DoubleBuffer;)V", (void *) Solve}
 	};
 	/*}}}*/
