Skip to content

Instantly share code, notes, and snippets.

@motorro
Created August 12, 2019 08:57
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 motorro/ada4f8a61a10ae3bc9994899343a558b to your computer and use it in GitHub Desktop.
Save motorro/ada4f8a61a10ae3bc9994899343a558b to your computer and use it in GitHub Desktop.
Release signing in debug config
android {
signingConfigs {
release: {
// Some release config for your app
}
}
buildTypes {
debug {
debuggable true
signingConfig signingConfigs.release // Temporary switch to release
}
release {
debuggable false
minifyEnabled true
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment