flo-electrum/contrib/make_apk
Vivek Teega 300241428c Sync Upstream
Pulling upstream changes in Electrum BTC and integrating them for FLO
2018-12-21 00:52:07 +05:30

20 lines
380 B
Bash
Executable File

#!/bin/bash
pushd ./electrum/gui/kivy/
make theming
if [[ -n "$1" && "$1" == "release" ]] ; then
echo -n Keystore Password:
read -s password
export P4A_RELEASE_KEYSTORE=~/.keystore
export P4A_RELEASE_KEYSTORE_PASSWD=$password
export P4A_RELEASE_KEYALIAS_PASSWD=$password
export P4A_RELEASE_KEYALIAS=electrum
make release
else
make apk
fi
popd