Skip to content

Instantly share code, notes, and snippets.

@topherPedersen
Created July 2, 2020 08:27
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 topherPedersen/377ec326f293ce7bdb35ad1a3bab9d8e to your computer and use it in GitHub Desktop.
Save topherPedersen/377ec326f293ce7bdb35ad1a3bab9d8e to your computer and use it in GitHub Desktop.
Working build.grade (Sign in with Google Blog Post)
signingConfigs {
debug {
storeFile file('debug.keystore')
storePassword 'android'
keyAlias 'androiddebugkey'
keyPassword 'android'
}
release {
if (project.hasProperty('MYAPP_UPLOAD_STORE_FILE')) {
storeFile file(MYAPP_UPLOAD_STORE_FILE)
storePassword MYAPP_UPLOAD_STORE_PASSWORD
keyAlias MYAPP_UPLOAD_KEY_ALIAS
keyPassword MYAPP_UPLOAD_KEY_PASSWORD
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment