From 90a0ba908ed50574b6d6130fa933dc00fb82794e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Thu, 5 Dec 2024 10:56:55 +0800 Subject: [PATCH] Read local properties in env for ci build --- app/build.gradle | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 033b7ac..339958d 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -147,18 +147,25 @@ tasks.withType(KotlinCompile.class).configureEach { } def getProps(String propName) { + def propsInEnv = System.getenv("LOCAL_PROPERTIES") + if (propsInEnv != null) { + def props = new Properties() + props.load(new ByteArrayInputStream(Base64.decoder.decode(propsInEnv))) + String value = props[propName] + if (value != null) { + return value + } + } def propsFile = rootProject.file("local.properties") if (propsFile.exists()) { def props = new Properties() props.load(new FileInputStream(propsFile)) String value = props[propName] - if (value == null) { - return "" + if (value != null) { + return value } - return value - } else { - return "" } + return "" } def getVersionProps(String propName) { @@ -167,11 +174,9 @@ def getVersionProps(String propName) { def props = new Properties() props.load(new FileInputStream(propsFile)) String value = props[propName] - if (value == null) { - return "" + if (value != null) { + return value } - return value - } else { - return "" } + return "" } \ No newline at end of file