chore(android): debug build use local dev server (USE_PROD_SERVER=false)

This commit is contained in:
Kevin
2026-03-09 13:54:16 +08:00
parent a23a71c7a4
commit 440f5be07f

View File

@@ -69,7 +69,7 @@ android {
// 默认调试即连公网https://lifecho.worldsplats.com便于公网调试 // 默认调试即连公网https://lifecho.worldsplats.com便于公网调试
debug { debug {
buildConfigField("Boolean", "IS_DEBUG_MODE", "true") buildConfigField("Boolean", "IS_DEBUG_MODE", "true")
buildConfigField("Boolean", "USE_PROD_SERVER", "true") buildConfigField("Boolean", "USE_PROD_SERVER", "false")
applicationIdSuffix = ".debug" applicationIdSuffix = ".debug"
versionNameSuffix = "-debug" versionNameSuffix = "-debug"
} }