Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@qwertyfinger
Last active March 27, 2019 02:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save qwertyfinger/2bb292ad9105c7163c983d105b21fe11 to your computer and use it in GitHub Desktop.
Save qwertyfinger/2bb292ad9105c7163c983d105b21fe11 to your computer and use it in GitHub Desktop.
#!/bin/sh
ENCRYPT_KEY=$1
# Decrypt Release key
openssl aes-256-cbc -md sha256 -d -in signing/app-release.aes -out signing/app-release.jks -k $ENCRYPT_KEY
# Decrypt Google Services key
openssl aes-256-cbc -md sha256 -d -in signing/google-services.aes -out app/google-services.json -k $ENCRYPT_KEY
# Decrypt Play publishing key
openssl aes-256-cbc -md sha256 -d -in signing/play-publish-account.aes -out signing/play-publish-account.json -k $ENCRYPT_KEY
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment