The Android SDK has an API for sending commands to the phone called Monkeyrunner. It appears to be a Python API. Is there anyway I can use it in a Java application?

link|improve this question

feedback

2 Answers

It's actually using Jython. The Jython implementation is invoking some JAR(s) that provide the actual capability, if I understand correctly. In principle, you could call those JARs from Java, JRuby, Scala, Clojure, or anything else that speaks JVM. That being said, I can't point you to any examples of anyone doing this.

link|improve this answer
feedback

Well I have been trying to do this, here is what I found (Thanks to google and some help from members on the internet)

Here is a little Java program that uses monkeyrunner to print the name of the device

import com.android.monkeyrunner.MonkeyDevice;
import com.android.monkeyrunner.adb.AdbBackend;

public class Monk {

 public static void main(String[] args) {
    // TODO code application logic here
    Monk monk=new Monk();
    monk.demo();
 }
 public void demo()
 {
    AdbBackend ab = new AdbBackend();
    MonkeyDevice device = ab.waitForConnection();
    //Print Device Name       
    System.out.println(device.getProperty("build.model"));
    device.dispose();
 }

}

For the above code too work, I needed to include the following jars monkeyrunner, ddmlib, jython, guavalib, sdklib.

link|improve this answer
1  
I'm getting an error with the device.getProperty. required: org.python.core.PyObject[],java.lang.String[] found: java.lang.String – Matt R. Johnson Aug 1 '11 at 20:15
you must have used device.getProperty(PyObject[] pos,String strings) instead of device.getProperty(String string) is my best guess. Please post ur code so that I can have a look at it – Harkish Aug 2 '11 at 14:46
I used YOUR code... – Matt R. Johnson Aug 3 '11 at 16:38
I am sorry, unable to understand why, the code above works for me – Harkish Aug 6 '11 at 0:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.