From 53fbe2efa50bfd26526d7812346d440f488b9bef Mon Sep 17 00:00:00 2001 From: Andrey Filipenkov Date: Wed, 11 Jun 2025 21:35:45 +0300 Subject: [PATCH] [android] gradle cleanup --- android/vcmi-app/build.gradle | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/android/vcmi-app/build.gradle b/android/vcmi-app/build.gradle index 62eea479c..49d2bf511 100644 --- a/android/vcmi-app/build.gradle +++ b/android/vcmi-app/build.gradle @@ -102,24 +102,6 @@ android { } } -def CommandOutput(final cmd, final arguments, final cwd) { - try { - new ByteArrayOutputStream().withStream { final os -> - exec { - executable cmd - args arguments - workingDir cwd - standardOutput os - } - return os.toString().trim() - } - } - catch (final Exception ex) { - print("Broken: " + cmd + " " + arguments + " in " + cwd + " :: " + ex.toString()) - return "" - } -} - def SigningPropertiesPath(final basePath, final signingConfigKey) { return file("${basePath}/${signingConfigKey}.properties") } @@ -142,7 +124,6 @@ def LoadSigningConfig(final signingConfigKey) { && props.containsKey('KEY_ALIAS')) { signingConfig.storeFile = SigningKeystorePath(signingRoot, props['STORE_FILE']) - signingConfig.storePassword = props['STORE_PASSWORD'] signingConfig.keyAlias = props['KEY_ALIAS'] if(props.containsKey('STORE_PASSWORD'))