fix: Fix path for keystore file

This commit is contained in:
Myzel394 2024-05-03 13:44:23 +02:00
parent 0318871fe4
commit ee12fc493e
No known key found for this signature in database
GPG Key ID: DEC4AAB876F73185

View File

@ -36,7 +36,7 @@ android {
signingConfigs { signingConfigs {
create("release") { create("release") {
val properties = Properties().apply { val properties = Properties().apply {
load(file("keystore.properties").reader()) load(file("../key.properties").reader())
} }
storeFile = File(properties.getProperty("storeFile")) storeFile = File(properties.getProperty("storeFile"))
storePassword = properties.getProperty("storePassword") storePassword = properties.getProperty("storePassword")