Skip to content

Commit

Permalink
Merge pull request #472 from lucasnlm/fix-crash
Browse files Browse the repository at this point in the history
Fix wear build config
  • Loading branch information
lucasnlm authored Nov 6, 2023
2 parents 3fdcdff + 663af95 commit 2482522
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions wear/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ android {
signingConfigs {
release {
if (System.getenv('IS_RELEASE_BUILD')) {
storeFile file(System.getenv('KEYSTORE'))
keyAlias System.getenv('KEY_ALIAS')
storePassword System.getenv('KEY_STORE_PASSWORD')
keyPassword System.getenv('KEY_PASSWORD')
storeFile file('../keystore')
keyAlias System.getenv('BITRISEIO_ANDROID_KEYSTORE_ALIAS')
storePassword System.getenv('BITRISEIO_ANDROID_KEYSTORE_PASSWORD')
keyPassword System.getenv('BITRISEIO_ANDROID_KEYSTORE_PRIVATE_KEY_PASSWORD')
}
}
}
Expand Down

0 comments on commit 2482522

Please sign in to comment.