summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/build.gradle4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 0efe9df73..fd6f8dd05 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -89,7 +89,9 @@ android {
// in gradle.properties file or via -P command line argument.
if (project.hasProperty("enableDexcountInDebug")) {
runOnEachPackage enableDexcountInDebug.toBoolean()
- } // else default to true
+ } else { // default to not running dexcount
+ runOnEachPackage false
+ }
}
}
release {