Here is the batch script: Or you can just download it.
Automatic install all apks in Windows’s folder
for %%f in (*.apk) do ( adb install “%%f” ) Voila!
TIL: awake and unlock screen when installing app is possible
Here is the link: http://stackoverflow.com/questions/22332513/wake-and-unlock-android-phone-screen-when-compile-and-run-project Here is the answer: One solution: set the following flags […]