Batch script for installing apks in folder
Here is the batch script: @echo off for /r %%i in (*.apk) do ( echo "Installing %%i"; adb install -r "%%i" ) Or you can just download it.
Here is the batch script: @echo off for /r %%i in (*.apk) do ( echo "Installing %%i"; adb install -r "%%i" ) Or you can just download it.
for %%f in (*.apk) do ( adb install "%%f" ) Voila!
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 in your activity class(es): if (BuildConfig.DEBUG) { // These flags cause the device screen to…