I am trying to send touch events (clicks and motions) to the foreground application from an application with system privileges (standard upload, not rooted)

I was able to run shell scripts emulating the inputs directly from linux shell but not from my application:

Runtime.getRuntime().exec(cmd)

returns

cannot open /dev/input/event1, permission denied

This occurs if cmd is sh /path/script-emulating-events or sendevent /dev/input/event1 xxxx x x.

Since the application has android.uid.system for shared user id, it shouldn't be an android privilege issue.

Any idea?

link|improve this question
feedback

1 Answer

In order to run those commands, you have to root your device.

link|improve this answer
OK. So is there a "send motion event" API, more reliable than this input device hack? – slash33 Feb 15 at 8:14
I don't think so. – Wei Liu May 21 at 14:52
feedback

Your Answer

 
or
required, but never shown

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