Skip to content

Instantly share code, notes, and snippets.

@TheMaxCoder
Created June 29, 2020 07:13
Show Gist options
  • Save TheMaxCoder/4701a594414c25862283a0f6b0770410 to your computer and use it in GitHub Desktop.
Save TheMaxCoder/4701a594414c25862283a0f6b0770410 to your computer and use it in GitHub Desktop.
Script for double click install of an APK on single device
@ECHO OFF
:: Sets the title of the CMD window
Title Installing %1
:: Prints the name and path of APK being installed
ECHO installing %1...
ADB install %1
:: So we can see the final message if it is a success or error
PAUSE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment