From 932e08b461f8b5e1ac238d77fce16adce06830f3 Mon Sep 17 00:00:00 2001 From: leo Date: Sun, 23 Feb 2020 17:20:19 +0800 Subject: [PATCH] =?UTF-8?q?fix=20setDetectDebuger=20=E6=96=B9=E6=B3=95?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E4=B8=8D=E7=94=9F=E6=95=88=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/tencent/matrix/resource/config/ResourceConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matrix/matrix-android/matrix-resource-canary/matrix-resource-canary-android/src/main/java/com/tencent/matrix/resource/config/ResourceConfig.java b/matrix/matrix-android/matrix-resource-canary/matrix-resource-canary-android/src/main/java/com/tencent/matrix/resource/config/ResourceConfig.java index db33f9e08..2f5d9979c 100644 --- a/matrix/matrix-android/matrix-resource-canary/matrix-resource-canary-android/src/main/java/com/tencent/matrix/resource/config/ResourceConfig.java +++ b/matrix/matrix-android/matrix-resource-canary/matrix-resource-canary-android/src/main/java/com/tencent/matrix/resource/config/ResourceConfig.java @@ -93,7 +93,7 @@ public Builder setAutoDumpHprofMode(DumpMode mode) { } public Builder setDetectDebuger(boolean enabled) { - mDetectDebugger = true; + mDetectDebugger = enabled; return this; }