From 440f5be07f9503e5d8c458dd99a9af81a1c192e4 Mon Sep 17 00:00:00 2001 From: Kevin Date: Mon, 9 Mar 2026 13:54:16 +0800 Subject: [PATCH] chore(android): debug build use local dev server (USE_PROD_SERVER=false) --- app-android/app/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-android/app/build.gradle.kts b/app-android/app/build.gradle.kts index 6c771df..be925b1 100644 --- a/app-android/app/build.gradle.kts +++ b/app-android/app/build.gradle.kts @@ -69,7 +69,7 @@ android { // 默认调试即连公网(https://lifecho.worldsplats.com),便于公网调试 debug { buildConfigField("Boolean", "IS_DEBUG_MODE", "true") - buildConfigField("Boolean", "USE_PROD_SERVER", "true") + buildConfigField("Boolean", "USE_PROD_SERVER", "false") applicationIdSuffix = ".debug" versionNameSuffix = "-debug" }