Skip to content

Instantly share code, notes, and snippets.

@AndrewHaisting
Last active February 22, 2019 19:21
Show Gist options
  • Save AndrewHaisting/0fff99cb05b6725b2d7cb86add61323f to your computer and use it in GitHub Desktop.
Save AndrewHaisting/0fff99cb05b6725b2d7cb86add61323f to your computer and use it in GitHub Desktop.
android {
// ...
signingConfigs {
debug {
keyAlias 'debug'
keyPassword 'android'
storeFile file('../debug.jks')
storePassword 'android'
}
}
buildTypes {
debug {
signingConfig signingConfigs.debug
}
//...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment