feat: add signing props to release config build

pull/864/head
jubb 4 years ago
parent 5fbace70b5
commit 48b3a5038c

@ -232,8 +232,21 @@ android {
} }
} }
signingConfigs {
release {
def props = new Properties()
rootProject.file("signing.properties").withInputStream { props.load(it) }
storeFile file(props["KEYSTORE_FILE"])
storePassword props["KEYSTORE_PASS"]
keyAlias props["KEYSTORE_ALIAS"]
keyPassword props["KEYSTORE_ALIAS_PASS"]
}
}
buildTypes { buildTypes {
release { release {
signingConfig signingConfigs.release
debuggable true
minifyEnabled false minifyEnabled false
} }
debug { debug {

Loading…
Cancel
Save