Skip to content

Commit 2482522

Browse files
authored
Merge pull request #472 from lucasnlm/fix-crash
Fix wear build config
2 parents 3fdcdff + 663af95 commit 2482522

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

wear/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ android {
2323
signingConfigs {
2424
release {
2525
if (System.getenv('IS_RELEASE_BUILD')) {
26-
storeFile file(System.getenv('KEYSTORE'))
27-
keyAlias System.getenv('KEY_ALIAS')
28-
storePassword System.getenv('KEY_STORE_PASSWORD')
29-
keyPassword System.getenv('KEY_PASSWORD')
26+
storeFile file('../keystore')
27+
keyAlias System.getenv('BITRISEIO_ANDROID_KEYSTORE_ALIAS')
28+
storePassword System.getenv('BITRISEIO_ANDROID_KEYSTORE_PASSWORD')
29+
keyPassword System.getenv('BITRISEIO_ANDROID_KEYSTORE_PRIVATE_KEY_PASSWORD')
3030
}
3131
}
3232
}

0 commit comments

Comments
 (0)