Skip to content

Commit

Permalink
fix(android): build
Browse files Browse the repository at this point in the history
  • Loading branch information
MuhammedKpln committed Feb 8, 2024
1 parent 0cd9859 commit 06a099d
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 @@ -16,7 +16,7 @@ android {
release {
keyAlias keystoreProperties['keyAlias'] ? keystoreProperties['keyAlias'] : System.getenv("KEYSTORE_KEY_ALIAS")
keyPassword keystoreProperties['keyPassword'] ? keystoreProperties['keyPassword'] : System.getenv("KEYSTORE_KEY_PASSWORD")
storeFile file(keystoreProperties['storeFile']) ? file(keystoreProperties['storeFile']) : file(System.getenv("KEYSTORE_PATH"))
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : file(System.getenv("KEYSTORE_PATH"))
storePassword keystoreProperties['storePassword'] ? keystoreProperties['storePassword'] : System.getenv("KEYSTORE_STORE_PASSWORD")
}
}
Expand Down

0 comments on commit 06a099d

Please sign in to comment.