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" |