Skip to content

Commit

Permalink
Fail loudly if no storeFile
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkrieger committed Dec 10, 2021
1 parent 1c10ec4 commit 349c48c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ android {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : file("../keystore.jks")
storePassword keystoreProperties['storePassword']
}
}
Expand Down

0 comments on commit 349c48c

Please sign in to comment.