-
-
Save esabook/be162eafa7e1db51e97c4f9da11db692 to your computer and use it in GitHub Desktop.
Install the app in device from aab, add "pass=pass:*"
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 | |
# One step wrapper to install aab to connected device, it downloads bundletool if its missing and signs the app with android debug certifiate. | |
# | |
# Usage: installFromAAB apk.aab <local-aab-path/apk.aab> | |
# | |
BASENAME="${1##*/}" | |
KEYSTORE=~/.android/debug.keystore | |
KS_ALIAS="androiddebugkey" | |
PASS="pass:android" | |
BUNDLETOOL_PATH=~/.android/bundletool-all-0.5.0.jar | |
BUNDLETOOL='java -jar $BUNDLETOOL_PATH' | |
BUNDLETOOL_DOWNLOAD_URL='https://github.com/google/bundletool/releases/download/0.5.0/bundletool-all-0.5.0.jar' | |
TMP_APKS_PATH="/tmp/$BASENAME.apks" | |
AAB_PATH=$1 | |
function die () { | |
echo | |
echo "$*" | |
echo | |
exit 1 | |
} | |
function error () { | |
printf "\e[01;31m $1 \e[0m" | |
} | |
function usage { | |
echo "Usage install-aab <local-aab-path>" | |
echo "\n" | |
echo "eg. install-aab ~/Downloads/YourApp-Version.aab" | |
} | |
if [[ $1 == "" ]]; then | |
usage | |
die | |
fi | |
# Determine the Java command to use to start the JVM. | |
if [ -n "$JAVA_HOME" ] ; then | |
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then | |
# IBM's JDK on AIX uses strange locations for the executables | |
JAVACMD="$JAVA_HOME/jre/sh/java" | |
else | |
JAVACMD="$JAVA_HOME/bin/java" | |
fi | |
if [ ! -x "$JAVACMD" ] ; then | |
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME | |
Please set the JAVA_HOME variable in your environment to match the | |
location of your Java installation." | |
fi | |
else | |
JAVACMD="java" | |
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. | |
Please set the JAVA_HOME variable in your environment to match the | |
location of your Java installation." | |
fi | |
if [ ! -f $BUNDLETOOL_PATH ]; then | |
if hash curl 2>/dev/null; then | |
echo "Trying to find latest bundletool version" | |
BUNDLETOOL_DOWNLOAD_URL=$(curl -s --connect-timeout 30 https://api.github.com/repos/google/bundletool/releases/latest | grep browser_download_ur | cut -d '"' -f 4) | |
echo "Downloading bundletool from $BUNDLETOOL_DOWNLOAD_URL" | |
if curl -# --connect-timeout 30 -L $BUNDLETOOL_DOWNLOAD_URL --output "$BUNDLETOOL_PATH.part" ; then | |
mv "$BUNDLETOOL_PATH.part" $BUNDLETOOL_PATH | |
else | |
error "Unable to download bundletool, download it from | |
$BUNDLETOOL_PATH and store it in $BUNDLETOOL_PATH" | |
die | |
fi | |
else | |
error "Unable to download bundletool, download it from | |
$BUNDLETOOL_PATH and store it in $BUNDLETOOL_PATH" | |
die | |
fi | |
fi | |
if [ ! -f $KEYSTORE ]; then | |
echo "Creating keystore $keystore" | |
if hash keytool 2>/dev/null; then | |
keytool -genkey -v -keystore $KEYSTORE -storepass $PASS -alias $KS_ALIAS \ | |
-keypass $PASS -keyalg RSA -keysize 2048 -validity 10000 \ | |
-dname "C=US, O=Android, CN=Android Debug" | |
else | |
error "Unable to create $KEYSTORE" | |
exit 0; | |
fi | |
fi | |
echo "Creating $TMP_APKS_PATH from $AAB_PATH" | |
$JAVACMD -jar $BUNDLETOOL_PATH build-apks --bundle=$AAB_PATH --ks=$KEYSTORE --ks-key-alias=$KS_ALIAS \ | |
--ks-pass=pass:$PASS --key-pass=pass:$PASS --output=$TMP_APKS_PATH --connected-device --overwrite && \ | |
echo "Installing $TMP_APKS_PATH" && \ | |
$JAVACMD -jar $BUNDLETOOL_PATH install-apks --apks=$TMP_APKS_PATH |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment