Re: [android-developers] Simulate UI Actions on device

2011-06-15 Thread Bill Napier
On Sat, Jun 11, 2011 at 11:25 AM, Mark Murphy mmur...@commonsware.comwrote: If not, then is MonkeyRunner is enough for it? Only you can answer that. If MonkeyRunner doesn't work out well, you can always use the same protocol that MR uses to talk to the device to implement the features

Re: [android-developers] Simulate UI Actions on device

2011-06-14 Thread Pepijn Van Eeckhoudt
On 11/06/2011 20:25, Mark Murphy wrote: On Fri, Jun 10, 2011 at 9:12 AM, Gorav Singaltechi...@gmail.com wrote: Actually, I want to have mobile application running in background. And, I have a java application running on desktop, which will send commands through socket. And, the device

Re: [android-developers] Simulate UI Actions on device

2011-06-11 Thread Gorav Singal
Actually, I want to have mobile application running in background. And, I have a java application running on desktop, which will send commands through socket. And, the device application will perform the required UI action. e.g. touch/click on coordinates x, y I want to perform UI action on

Re: [android-developers] Simulate UI Actions on device

2011-06-11 Thread Mark Murphy
On Fri, Jun 10, 2011 at 9:12 AM, Gorav Singal techi...@gmail.com wrote: Actually, I want to have mobile application running in background. And, I have a java application running on desktop, which will send commands through socket. And, the device application will perform the required UI action.

Re: [android-developers] Simulate UI Actions on device

2011-06-10 Thread Mark Murphy
On Thu, Jun 9, 2011 at 3:41 AM, gorav techi...@gmail.com wrote: I want to simulate keyboard events, touch events on screen. And, I don;t want to have dependency on Android SDK. i.e. I want to deploy apk file on device, which can fire some events. Fortunately, this is impossible, as it would be

Re: [android-developers] Simulate UI Actions on device

2011-06-10 Thread Pepijn Van Eeckhoudt
If you're trying to test your own application code you can do this via the Instrumentation API. Pepijn On 10/06/2011 14:34, Mark Murphy wrote: On Thu, Jun 9, 2011 at 3:41 AM, goravtechi...@gmail.com wrote: I want to simulate keyboard events, touch events on screen. And, I don;t want to have

[android-developers] Simulate UI Actions on device

2011-06-09 Thread gorav
I want to simulate keyboard events, touch events on screen. And, I don;t want to have dependency on Android SDK. i.e. I want to deploy apk file on device, which can fire some events. I studied MonkeyRunner, and it seems that I need SDK. Also, it requires python scripts. Is there any java