keys.scala, etc.: Make merging public keys have a progress bar.
[tripe-android] / toy-activity.scala
index c605ca5..7ee4dad 100644 (file)
@@ -15,8 +15,6 @@ import scala.util.control.Breaks;
 
 object ToyActivity {
   private final val TAG = "ToyActivity";
-  System.loadLibrary("jni");
-  @native protected def foo();
 }
 
 class ToyActivity extends Activity {
@@ -30,10 +28,5 @@ class ToyActivity extends Activity {
   }
   def clickOk(v: View) {
     Log.d(TAG, "OK, OK.  (Scala was here.)");
-    foo();
-
-    val bindir = getDir("bin", MODE_WORLD_READABLE);
-    Runtime.getRuntime.exec(Array(new File(bindir, "prog").getPath,
-                                 "testing", "1", "2", "3"));
   }
 }