mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 01:11:35 +00:00
add apk release script
This commit is contained in:
parent
d58c069336
commit
31eed35a0a
1 changed files with 16 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue