openstf / minitouch

Minimal multitouch event producer for Android.
Other
633 stars 233 forks source link

/dev/input how to write to this? #3

Closed likezjuisee closed 8 years ago

likezjuisee commented 8 years ago

The device has not been rooted, so how minitouch write to it?

sorccu commented 8 years ago

The adb shell user has permissions to access it. Which means that you can only run minitouch via adb shell without root. You can't run it from an .apk, for example, because the necessary permissions are not available to non-system applications (without rooting).

likezjuisee commented 8 years ago

Thanks!