Last active
May 9, 2017 13:06
-
-
Save andrew-codechimp/996af8edd4f93f3038b3552eeff5dbb9 to your computer and use it in GitHub Desktop.
Reference project level debug.keystore within Gradle build
This file contains hidden or 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
... | |
signingConfigs { | |
debug { | |
storeFile rootProject.file('debug.keystore') | |
storePassword "android" | |
keyAlias "androiddebugkey" | |
keyPassword "android" | |
} | |
release | |
} | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment