Skip to content

Instantly share code, notes, and snippets.

@JohannesDeml
Last active June 11, 2021 15:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JohannesDeml/7c5a4920f546b1f19a404531a68b95c8 to your computer and use it in GitHub Desktop.
Save JohannesDeml/7c5a4920f546b1f19a404531a68b95c8 to your computer and use it in GitHub Desktop.
Force install all apks in a folder to the android device connected
:: 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