Fixed build script.

This commit is contained in:
Antoine POPINEAU 2019-10-22 20:19:05 +02:00
parent 9e7d1cfe29
commit 6139591bd1
No known key found for this signature in database
GPG Key ID: A78AC64694F84063
1 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,6 @@
import org.gradle.kotlin.dsl.*
import org.jetbrains.kotlin.gradle.dsl.KotlinJvmOptions
import org.jetbrains.kotlin.konan.properties.hasProperty
import java.io.FileInputStream
import java.util.*
@ -43,7 +44,7 @@ android {
signingConfigs {
create("release") {
if (props.contains("signing.store")) {
if (props.hasProperty("signing.store")) {
storeFile = file(props.getProperty("signing.store"))
storePassword = props.getProperty("signing.store_passphrase")
keyAlias = props.getProperty("signing.alias").toString()
@ -74,7 +75,7 @@ ktlint {
}
play {
isEnabled = props.contains("play.credentials")
isEnabled = props.hasProperty("play.credentials")
if (isEnabled) {
serviceAccountCredentials = file(props.getProperty("play.credentials"))