We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c875e7d commit 56ee052Copy full SHA for 56ee052
1 file changed
settings.gradle
@@ -10,9 +10,9 @@ rootProject.name = "FloatingX"
10
include ':app'
11
include ':floatingx'
12
13
-// 本地测试时,在 local.properties 新增 IS_DEV=true
+// 依赖远程测试时,在 local.properties 新增 IS_DEV=false,然后sync project
14
def localProperties = readPropertiesIfExist(new File(settingsDir, "local.properties"))
15
-gradle.ext.IS_DEV = localProperties.getProperty("IS_DEV", "false").toBoolean()
+gradle.ext.IS_DEV = localProperties.getProperty("IS_DEV", "true").toBoolean()
16
17
static Properties readPropertiesIfExist(File propertiesFile) {
18
Properties result = new Properties()
0 commit comments