I am creating an Android Accessibility Service which calls performGlobalAction() at onStartCommand()
onStartCommand()
public int onStartCommand(Intent intent,
In the phone's system settings -> accesivility service I had to enable my app. After that it started to work.
try Thread.sleep(1000) before performGlobalAction()
Thread.sleep(1000)
performGlobalAction()