build: comment out release signing config because nightly refuses to build with it
Wtf is wrong with this
This commit is contained in:
parent
167a2e1e2f
commit
928506b360
1 changed files with 22 additions and 22 deletions
|
@ -45,27 +45,27 @@ android {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
release{
|
// release{
|
||||||
storeFile = file("keystore/release_keystore.jks")
|
// storeFile = file("keystore/release_keystore.jks")
|
||||||
storePassword System.getenv("RELEASE_SIGNING_STORE_PASSWORD")
|
// storePassword System.getenv("RELEASE_SIGNING_STORE_PASSWORD")
|
||||||
if (storePassword == null) {
|
// if (storePassword == null) {
|
||||||
Properties properties = new Properties()
|
// Properties properties = new Properties()
|
||||||
properties.load(project.rootProject.file('local.properties').newDataInputStream())
|
// properties.load(project.rootProject.file('local.properties').newDataInputStream())
|
||||||
storePassword = properties.getProperty('RELEASE_SIGNING_STORE_PASSWORD')
|
// storePassword = properties.getProperty('RELEASE_SIGNING_STORE_PASSWORD')
|
||||||
}
|
// }
|
||||||
keyAlias System.getenv("RELEASE_SIGNING_KEY_ALIAS")
|
// keyAlias System.getenv("RELEASE_SIGNING_KEY_ALIAS")
|
||||||
if (keyAlias == null) {
|
// if (keyAlias == null) {
|
||||||
Properties properties = new Properties()
|
// Properties properties = new Properties()
|
||||||
properties.load(project.rootProject.file('local.properties').newDataInputStream())
|
// properties.load(project.rootProject.file('local.properties').newDataInputStream())
|
||||||
keyAlias = properties.getProperty('RELEASE_SIGNING_KEY_ALIAS')
|
// keyAlias = properties.getProperty('RELEASE_SIGNING_KEY_ALIAS')
|
||||||
}
|
// }
|
||||||
keyPassword System.getenv("RELEASE_SIGNING_KEY_PASSWORD")
|
// keyPassword System.getenv("RELEASE_SIGNING_KEY_PASSWORD")
|
||||||
if (keyPassword == null) {
|
// if (keyPassword == null) {
|
||||||
Properties properties = new Properties()
|
// Properties properties = new Properties()
|
||||||
properties.load(project.rootProject.file('local.properties').newDataInputStream())
|
// properties.load(project.rootProject.file('local.properties').newDataInputStream())
|
||||||
keyPassword = properties.getProperty('RELEASE_SIGNING_KEY_PASSWORD')
|
// keyPassword = properties.getProperty('RELEASE_SIGNING_KEY_PASSWORD')
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
}
|
}
|
||||||
|
|
||||||
buildTypes {
|
buildTypes {
|
||||||
|
@ -105,7 +105,7 @@ android {
|
||||||
githubRelease { initWith release }
|
githubRelease { initWith release }
|
||||||
fdroidRelease {
|
fdroidRelease {
|
||||||
initWith release
|
initWith release
|
||||||
signingConfig signingConfigs.release
|
// signingConfig signingConfigs.release
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
compileOptions {
|
compileOptions {
|
||||||
|
|
Loading…
Add table
Reference in a new issue