[android-developers] Re: Send Touch Events to Foreground Activity

2010-07-23 Thread Matt Rusiniak
Thanks Joseph, but I'm looking at doing automation of the entire device, so input at any moment to any screen. I've been writing some helper functions around Monkey scripts as I was not able to use the private APIs (wasn't able to dig deep enough), which seems to be working alright so far. On Jul

[android-developers] Re: Send Touch Events to Foreground Activity

2010-07-22 Thread Matt Rusiniak
Hi Dianne, I read through all the source of Monkey and realized that I'd need access to private APIs, however I have read (I think even from you) that using private APIs is highly discouraged. Currently right now I'm actually able to use the very rudimentary built in scripting support with monkey

[android-developers] Re: Send Touch Events to Foreground Activity

2010-07-22 Thread Joseph Earl
If you want to do unit testing etc take a look at 1) http://developer.android.com/resources/tutorials/testing/helloandroid_test.html and 2) http://developer.android.com/resources/tutorials/testing/activity_test.html which should help you out. On Jul 21, 9:14 pm, Matt Rusiniak wrote: > Hi everyon