We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f78871 commit eb89b8bCopy full SHA for eb89b8b
app/build.gradle.kts
@@ -17,7 +17,7 @@ android {
17
val propertiesFile = rootProject.file("keystore.properties")
18
val properties = Properties()
19
properties.load(propertiesFile.inputStream())
20
- storeFile = file(properties["STORE_FILE"] as String)
+ storeFile = rootProject.file(properties["STORE_FILE"] as String)
21
storePassword = properties["STORE_PASSWORD"] as String
22
keyAlias = properties["KEY_ALIAS"] as String
23
keyPassword = properties["KEY_PASSWORD"] as String
0 commit comments