Last active
April 23, 2017 06:13
-
-
Save mdesoto/c49208925ed3c18222808893dafa9dc2 to your computer and use it in GitHub Desktop.
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 { | |
... | |
defaultConfig { ... } | |
signingConfigs { | |
release { | |
storeFile file("myreleasekey.keystore") | |
storePassword "password" | |
keyAlias "MyReleaseKey" | |
keyPassword "password" | |
} | |
} | |
buildTypes { | |
release { | |
... | |
signingConfig signingConfigs.release | |
} | |
} | |
} | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment