Skip to content

Instantly share code, notes, and snippets.

View FPSUsername's full-sized avatar
🎯

FPSUsername

🎯
View GitHub Profile
@FPSUsername
FPSUsername / batch_apk_installer.sh
Last active October 2, 2021 20:37
Install multiple APK files to a single or multiple devices that are connected over ADB
#!/bin/sh
package="APK Installer"
ver=1.0
# Install APK file
install_apk() {
local filename=$1
local device=$2
echo "Installing '$filename' on device '$device'"
result=$(adb -s $device install $filename)