Skip to content

Instantly share code, notes, and snippets.

@mdesoto
Last active April 23, 2017 06:13
Show Gist options
  • Save mdesoto/c49208925ed3c18222808893dafa9dc2 to your computer and use it in GitHub Desktop.
Save mdesoto/c49208925ed3c18222808893dafa9dc2 to your computer and use it in GitHub Desktop.
...
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