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 6384634 commit 4ff2c7dCopy full SHA for 4ff2c7d
app/build.gradle
@@ -30,9 +30,10 @@ android {
30
buildConfigField "String", "SETUP_INSTRUCTIONS_URL", "\"https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki\""
31
}
32
33
- if (new File("keystore/signing.properties").exists()) {
+ def hasPropertiesFile = new File("app/keystore/signing.properties").exists()
34
+ if (hasPropertiesFile) {
35
Properties props = new Properties()
- props.load(new FileInputStream(file("signing.properties")))
36
+ props.load(new FileInputStream(file("keystore/signing.properties")))
37
38
signingConfigs {
39
release {
0 commit comments