Commit 50d98774 authored by topjohnwu's avatar topjohnwu

Sign debug builds with custom keystore if applicable

parent fe063520
...@@ -23,6 +23,11 @@ android { ...@@ -23,6 +23,11 @@ android {
} }
buildTypes { buildTypes {
debug {
// If keystore exists, sign the APK with custom signature
if (signingConfigs.config.storeFile.exists())
signingConfig signingConfigs.config
}
release { release {
minifyEnabled true minifyEnabled true
shrinkResources true shrinkResources true
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment