Skip to content

Commit

Permalink
fix: Fix path for keystore file
Browse files Browse the repository at this point in the history
  • Loading branch information
Myzel394 committed May 3, 2024
1 parent 0318871 commit ee12fc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ android {
signingConfigs {
create("release") {
val properties = Properties().apply {
load(file("keystore.properties").reader())
load(file("../key.properties").reader())
}
storeFile = File(properties.getProperty("storeFile"))
storePassword = properties.getProperty("storePassword")
Expand Down

0 comments on commit ee12fc4

Please sign in to comment.