Last active
June 11, 2021 15:21
-
-
Save JohannesDeml/7c5a4920f546b1f19a404531a68b95c8 to your computer and use it in GitHub Desktop.
Force install all apks in a folder to the android device connected
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: Install all apk files in this folder | |
@Echo off | |
for %%a in (*.apk) do ( | |
echo installing "%%a" | |
adb install -r -d "%%a" | |
) | |
PAUSE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment