Created
October 23, 2018 17:30
-
-
Save umarhussain15/d061a0cc2d3f7c300f1d1b9bd3705b99 to your computer and use it in GitHub Desktop.
app gradle file using environment variables.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
android { | |
signingConfigs { | |
release { | |
storeFile = file(System.getenv('KEYSTORE_FILE_NAME')) | |
storePassword = System.getenv('KEYSTORE_PASSWORD') | |
keyAlias = System.getenv('KEYSTORE_ALIAS_NAME') | |
keyPassword = System.getenv('KEYSTORE_KEY_PASSWORD') | |
} | |
debug { | |
storeFile = file(System.getenv('KEYSTORE_FILE_NAME')) | |
storePassword = System.getenv('KEYSTORE_PASSWORD') | |
keyAlias = System.getenv('KEYSTORE_ALIAS_NAME') | |
keyPassword = System.getenv('KEYSTORE_KEY_PASSWORD') | |
} | |
} | |
// ... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment