Skip to content

Instantly share code, notes, and snippets.

@passiondroid
Created May 9, 2018 11:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save passiondroid/412ca88583e657c32d9e6f37988aef3b to your computer and use it in GitHub Desktop.
Save passiondroid/412ca88583e657c32d9e6f37988aef3b to your computer and use it in GitHub Desktop.
android {
defaultConfig {
}
signingConfigs {
release {
val signing = project.rootProject.properties("signing.properties")
if (signing != null) {
create("default") {
storeFile = file(signing.getProperty("storeFile"))
storePassword = signing.getProperty("storePassword")
keyAlias = signing.getProperty("keyAlias")
keyPassword = signing.getProperty("keyPassword")
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment