I am building an accessibility related service. My goal is to catch all touch-events, change the event's parameters (i.e. event.x = event.getX()+5) and pass it on to the current running application (any application).
After trying to use a system-overlay (see this post), I understood that this is pretty much impossible for Android > 4.0 for security reasons, and was wandering if there any way to use the AccessibilityEvent or any other accessibility-related method.
Thank you