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.
Photo by <a href="https://unsplash.com/@pastorthomasbwilson" rel="nofollow">Tom Wilson</a> on <a href="https://unsplash.com/?utm_source=android-blog&utm_medium=referral" rel="nofollow">Unsplash</a> 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.