From cb1b98cbf9591336601a926112f92e48c9b79b32 Mon Sep 17 00:00:00 2001 From: Arnie via Claude Date: Fri, 12 Jun 2026 18:38:09 +0200 Subject: [PATCH] feat: prefix app_name with "C3C " for Control4 identification Co-Authored-By: Claude Sonnet 4.6 --- app/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 4ce75dd..3b748b6 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -49,7 +49,7 @@ android { dimension = "webview" applicationIdSuffix = ".$name" buildConfigField("String", "WEBVIEW_URL", "\"${config["url"]}\"") - resValue("string", "app_name", config["label"] ?: name) + resValue("string", "app_name", "C3C ${config["label"] ?: name}") } } }