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?