Skip to content

Instantly share code, notes, and snippets.

View TheMaxCoder's full-sized avatar
👨‍💻
Busy coding

Atiq Ur Rehman TheMaxCoder

👨‍💻
Busy coding
View GitHub Profile
@TheMaxCoder
TheMaxCoder / install_apk_all_devices.bat
Created June 29, 2020 11:40
Install APK on all attached devices
@ECHO OFF
:: Sets the title of the CMD window
Title Installing %1
:: Prints the name and path of APK being installed
ECHO installing %1...
FOR /F "skip=1" %%x IN ('adb devices') DO start ADB -s %%x install %1
@TheMaxCoder
TheMaxCoder / install_apk_single_device.bat
Created June 29, 2020 07:13
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