I can start the monkey on Android with an adb shell using the following command: adb shell monkey --ignore-crashes -p com.teslacoilsw.launcher 200 -v 1
However, I would like to know if it's possible to start the monkey from an Android app. I tried this, but it doesn't seem to work:
Process p = Runtime.getRuntime().exec("monkey --ignore-crashes -p com.teslacoilsw.launcher 200 -v 1");
No error is thrown, it just sits there.
Any ideas? Thanks!