Fixed build script.
This commit is contained in:
parent
9e7d1cfe29
commit
6139591bd1
|
@ -1,5 +1,6 @@
|
||||||
import org.gradle.kotlin.dsl.*
|
import org.gradle.kotlin.dsl.*
|
||||||
import org.jetbrains.kotlin.gradle.dsl.KotlinJvmOptions
|
import org.jetbrains.kotlin.gradle.dsl.KotlinJvmOptions
|
||||||
|
import org.jetbrains.kotlin.konan.properties.hasProperty
|
||||||
import java.io.FileInputStream
|
import java.io.FileInputStream
|
||||||
import java.util.*
|
import java.util.*
|
||||||
|
|
||||||
|
@ -43,7 +44,7 @@ android {
|
||||||
|
|
||||||
signingConfigs {
|
signingConfigs {
|
||||||
create("release") {
|
create("release") {
|
||||||
if (props.contains("signing.store")) {
|
if (props.hasProperty("signing.store")) {
|
||||||
storeFile = file(props.getProperty("signing.store"))
|
storeFile = file(props.getProperty("signing.store"))
|
||||||
storePassword = props.getProperty("signing.store_passphrase")
|
storePassword = props.getProperty("signing.store_passphrase")
|
||||||
keyAlias = props.getProperty("signing.alias").toString()
|
keyAlias = props.getProperty("signing.alias").toString()
|
||||||
|
@ -74,7 +75,7 @@ ktlint {
|
||||||
}
|
}
|
||||||
|
|
||||||
play {
|
play {
|
||||||
isEnabled = props.contains("play.credentials")
|
isEnabled = props.hasProperty("play.credentials")
|
||||||
|
|
||||||
if (isEnabled) {
|
if (isEnabled) {
|
||||||
serviceAccountCredentials = file(props.getProperty("play.credentials"))
|
serviceAccountCredentials = file(props.getProperty("play.credentials"))
|
||||||
|
|
Loading…
Reference in New Issue