Skip to content

Instantly share code, notes, and snippets.

@smhdk
Created March 19, 2018 10:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smhdk/56b962eb4c13015fb7aa86e984b27125 to your computer and use it in GitHub Desktop.
Save smhdk/56b962eb4c13015fb7aa86e984b27125 to your computer and use it in GitHub Desktop.
Modul build.gradle signingConfigs Example
android {
...
defaultConfig { ... }
signingConfigs {
release {
storeFile file("my-release-key.jks")
storePassword "password"
keyAlias "my-alias"
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