We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d368c65 commit 0c83710Copy full SHA for 0c83710
build.gradle
@@ -50,10 +50,12 @@ android {
50
51
signingConfigs {
52
release {
53
- storeFile file(System.getenv("KEYSTORE"))
54
- storePassword new String(System.console().readPassword("\n\$ Keystore password: "))
55
- keyAlias "aard2-android"
56
- keyPassword new String(System.console().readPassword("\n\$ Key password: "))
+ if (System.getenv("KEYSTORE_FILE") != null) {
+ storeFile file(System.getenv("KEYSTORE"))
+ storePassword new String(System.console().readPassword("\n\$ Keystore password: "))
+ keyAlias "aard2-android"
57
+ keyPassword new String(System.console().readPassword("\n\$ Key password: "))
58
+ }
59
}
60
61
0 commit comments