Created
August 12, 2019 08:57
-
-
Save motorro/ada4f8a61a10ae3bc9994899343a558b to your computer and use it in GitHub Desktop.
Release signing in debug config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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