Skip to content

Instantly share code, notes, and snippets.

@rallat
Last active November 16, 2015 06:39
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rallat/c0c7e8ab998166ab9b53 to your computer and use it in GitHub Desktop.
Save rallat/c0c7e8ab998166ab9b53 to your computer and use it in GitHub Desktop.
release signed apk using gradle
android {
signingConfigs {
release {
storeFile file("/path/to/keystore")
storePassword "storepassword"
keyAlias "alias"
keyPassword "keypassword"
}
}
buildTypes {
release {
signingConfig signingConfigs.release
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment