Skip to content

Instantly share code, notes, and snippets.

@andrew-codechimp
Last active May 9, 2017 13:06
Show Gist options
  • Save andrew-codechimp/996af8edd4f93f3038b3552eeff5dbb9 to your computer and use it in GitHub Desktop.
Save andrew-codechimp/996af8edd4f93f3038b3552eeff5dbb9 to your computer and use it in GitHub Desktop.
Reference project level debug.keystore within Gradle build
...
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