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?
|
feedback
|
|
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. | |||
|
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
} For the above code too work, I needed to include the following jars monkeyrunner, ddmlib, jython, guavalib, sdklib. | |||||||||||
feedback
|