Skip to content

Instantly share code, notes, and snippets.

@bullheadandplato
Created September 29, 2018 11:06
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 bullheadandplato/0c07a915e4fd6763b3455b952dd44577 to your computer and use it in GitHub Desktop.
Save bullheadandplato/0c07a915e4fd6763b3455b952dd44577 to your computer and use it in GitHub Desktop.
signing config
android {
compileSdkVersion 28
buildToolsVersion '27.0.3'
signingConfigs {
release {
keyAlias 'key2'
keyPassword 'password'
storeFile file('/home/bullhead/keys/key.jks')
storePassword 'password'
}
debug {
keyAlias 'key2' // key alias name e.g key0
keyPassword 'password'
storeFile file('/home/bullhead/keys/key.jks')
storePassword 'password'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment