Skip to content

Instantly share code, notes, and snippets.

@AndrewReitz
Created May 18, 2016 13:26
Show Gist options
  • Save AndrewReitz/22a629944c0120b2599286b7c7c93ef0 to your computer and use it in GitHub Desktop.
Save AndrewReitz/22a629944c0120b2599286b7c7c93ef0 to your computer and use it in GitHub Desktop.
Android Signing Extras
ext.keystorePassword = project.hasProperty('keystorePassword')?project.getProperty('keystorePassword'):System.getenv('KEYSTORE_PASSWORD')?:''
ext.aliasKeyPassword = project.hasProperty('aliasKeyPassword')?project.getProperty('aliasKeyPassword'):System.getenv('ALIAS_KEY_PASSWORD')?:''
ext.storeKeyAlias = project.hasProperty('storeKeyAlias')?project.getProperty('storeKeyAlias'):System.getenv('STORE_KEY_ALIAS')?:''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment