From dd31ae5cf9b9eb98d2255324c6d5d5dbe44e4b21 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 17 Jan 2026 14:39:31 +0000 Subject: [PATCH 1/2] Initial plan From da0af0ccafa543122870c34c9ac6bf3d9a9a2ea1 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 17 Jan 2026 14:54:29 +0000 Subject: [PATCH 2/2] Enable BuildConfig for memory-vault Co-authored-by: Godzilla675 <131464726+Godzilla675@users.noreply.github.com> --- memory-vault/build.gradle.kts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/memory-vault/build.gradle.kts b/memory-vault/build.gradle.kts index 3dd1a1cd..1bec47f5 100644 --- a/memory-vault/build.gradle.kts +++ b/memory-vault/build.gradle.kts @@ -27,6 +27,10 @@ android { buildConfigField("String", "ALIAS", getProperty("ALIAS")) } + buildFeatures { + buildConfig = true + } + buildTypes { release { isMinifyEnabled = false @@ -71,4 +75,4 @@ fun getProperty(value: String): String { } else { System.getenv(value) ?: "\"sample_val\"" } -} \ No newline at end of file +}