Add Google Play Publisher plugin and Play Store assets

This commit is contained in:
2020-01-02 09:39:13 -06:00
parent 3afd46c59c
commit b2df70c059
93 changed files with 656 additions and 26 deletions

16
.secret/decrypt.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/sh
cd "$(dirname "$0")"
if [ -z "$GPG_PASSWORD" ]; then
echo Env variable GPG_PASSWORD must be defined
exit 1
fi
for file in gcp-key.json keystore.jks gradle.properties env; do
gpg \
--quiet \
--batch \
--yes \
--decrypt \
--passphrase="$GPG_PASSWORD" \
--output $file \
$file.gpg
done