Created
November 8, 2016 21:57
-
-
Save tir38/f3129e2d7eed7e4fe4081bdafe685415 to your computer and use it in GitHub Desktop.
rando signing config setup
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("../keystore/production.jks") | |
keyAlias ... | |
keyPassword ... | |
storePassword ... | |
} | |
debug { | |
storeFile file('../keystore/debug.keystore') | |
storePassword 'android' | |
keyAlias 'androiddebugkey' | |
keyPassword 'android' | |
} | |
} | |
buildTypes { | |
debug { | |
... | |
signingConfig signingConfigs.debug | |
} | |
release { | |
... | |
signingConfig signingConfigs.release | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment