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
#!/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) |