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.