Use the same signing config for debug and release builds

This commit is contained in:
Pierrot 2019-01-06 14:21:34 +01:00
parent 7a10338edc
commit 5eb1eff992

View file

@ -31,6 +31,9 @@ if(project.hasProperty("signing.properties") && new File(project.property("signi
}
buildTypes {
debug {
signingConfig signingConfigs.release
}
release {
signingConfig signingConfigs.release
}