This commit is contained in:
parent
209f0c591e
commit
b237b38539
1 changed files with 4 additions and 4 deletions
|
|
@ -31,10 +31,10 @@ android {
|
|||
val keystoreProperties = Properties()
|
||||
if (keystorePropertiesFile.exists()) {
|
||||
keystoreProperties.load(FileInputStream(keystorePropertiesFile))
|
||||
keyAlias = keystoreProperties["keyAlias"] as String
|
||||
keyPassword = keystoreProperties["password"] as String
|
||||
storeFile = rootProject.file("../../../../../" + (keystoreProperties["storeFile"] as String))
|
||||
storePassword = keystoreProperties["password"] as String
|
||||
keyAlias = (keystoreProperties["keyAlias"] as? String) ?: ""
|
||||
keyPassword = (keystoreProperties["keyPassword"] as? String) ?: (keystoreProperties["password"] as? String) ?: ""
|
||||
storeFile = rootProject.file("../../../../../" + ((keystoreProperties["storeFile"] as? String) ?: ""))
|
||||
storePassword = (keystoreProperties["storePassword"] as? String) ?: (keystoreProperties["password"] as? String) ?: ""
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue