Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Faster android input tap command

Tags:

android

adb

I'm trying to run fast input tap commands one after another, but they run with 1 second between them. I'm wondering if there is an option to run them faster.

like image 988
user2396426 Avatar asked Dec 23 '15 20:12

user2396426


1 Answers

input is a java application and the "delay" you're seeing depends on how long it takes for your device to start a new java app. 1s is typical for older devices.

You can not do much about it if you want to keep using input. The alternatives to that would be either using sendevent command or modifying input to accept series of coordinates for sending the whole gesture at once.

like image 85
Alex P. Avatar answered Oct 05 '22 17:10

Alex P.