tadd apk release script - electrum - Electrum Bitcoin wallet
 (HTM) git clone https://git.parazyd.org/electrum
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
       ---
 (DIR) commit 31eed35a0ada729ec7c7ca6808309591abb90a9e
 (DIR) parent d58c069336dcd5a58ae36c668ce458732e8e6f0b
 (HTM) Author: ThomasV <thomasv@electrum.org>
       Date:   Fri, 29 Jun 2018 11:08:45 +0200
       
       add apk release script
       
       Diffstat:
         M contrib/make_apk                    |      17 ++++++++++++++++-
       
       1 file changed, 16 insertions(+), 1 deletion(-)
       ---
 (DIR) diff --git a/contrib/make_apk b/contrib/make_apk
       t@@ -1,2 +1,17 @@
        #!/bin/bash
       -pushd ./gui/kivy/; make apk; popd
       +
       +pushd ./gui/kivy/
       +
       +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