Skip to content

Instantly share code, notes, and snippets.

@tir38
Created November 8, 2016 21:57
Show Gist options
  • Save tir38/f3129e2d7eed7e4fe4081bdafe685415 to your computer and use it in GitHub Desktop.
Save tir38/f3129e2d7eed7e4fe4081bdafe685415 to your computer and use it in GitHub Desktop.
rando signing config setup
android {
...
signingConfigs {
release {
storeFile file("../keystore/production.jks")
keyAlias ...
keyPassword ...
storePassword ...
}
debug {
storeFile file('../keystore/debug.keystore')
storePassword 'android'
keyAlias 'androiddebugkey'
keyPassword 'android'
}
}
buildTypes {
debug {
...
signingConfig signingConfigs.debug
}
release {
...
signingConfig signingConfigs.release
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment