From 928506b36090bf942e8137c25f3050c25ad48b6a Mon Sep 17 00:00:00 2001 From: LucasGGamerM Date: Fri, 15 Dec 2023 18:17:21 -0300 Subject: [PATCH] build: comment out release signing config because nightly refuses to build with it Wtf is wrong with this --- mastodon/build.gradle | 44 +++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/mastodon/build.gradle b/mastodon/build.gradle index 600ef7e8e..2395e6b41 100644 --- a/mastodon/build.gradle +++ b/mastodon/build.gradle @@ -45,27 +45,27 @@ android { } } - release{ - storeFile = file("keystore/release_keystore.jks") - storePassword System.getenv("RELEASE_SIGNING_STORE_PASSWORD") - if (storePassword == null) { - Properties properties = new Properties() - properties.load(project.rootProject.file('local.properties').newDataInputStream()) - storePassword = properties.getProperty('RELEASE_SIGNING_STORE_PASSWORD') - } - keyAlias System.getenv("RELEASE_SIGNING_KEY_ALIAS") - if (keyAlias == null) { - Properties properties = new Properties() - properties.load(project.rootProject.file('local.properties').newDataInputStream()) - keyAlias = properties.getProperty('RELEASE_SIGNING_KEY_ALIAS') - } - keyPassword System.getenv("RELEASE_SIGNING_KEY_PASSWORD") - if (keyPassword == null) { - Properties properties = new Properties() - properties.load(project.rootProject.file('local.properties').newDataInputStream()) - keyPassword = properties.getProperty('RELEASE_SIGNING_KEY_PASSWORD') - } - } +// release{ +// storeFile = file("keystore/release_keystore.jks") +// storePassword System.getenv("RELEASE_SIGNING_STORE_PASSWORD") +// if (storePassword == null) { +// Properties properties = new Properties() +// properties.load(project.rootProject.file('local.properties').newDataInputStream()) +// storePassword = properties.getProperty('RELEASE_SIGNING_STORE_PASSWORD') +// } +// keyAlias System.getenv("RELEASE_SIGNING_KEY_ALIAS") +// if (keyAlias == null) { +// Properties properties = new Properties() +// properties.load(project.rootProject.file('local.properties').newDataInputStream()) +// keyAlias = properties.getProperty('RELEASE_SIGNING_KEY_ALIAS') +// } +// keyPassword System.getenv("RELEASE_SIGNING_KEY_PASSWORD") +// if (keyPassword == null) { +// Properties properties = new Properties() +// properties.load(project.rootProject.file('local.properties').newDataInputStream()) +// keyPassword = properties.getProperty('RELEASE_SIGNING_KEY_PASSWORD') +// } +// } } buildTypes { @@ -105,7 +105,7 @@ android { githubRelease { initWith release } fdroidRelease { initWith release - signingConfig signingConfigs.release +// signingConfig signingConfigs.release } } compileOptions {