summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authororionlee <orionlee@yahoo.com>2018-05-13 15:07:07 -0700
committerorionlee <orionlee@yahoo.com>2018-05-13 15:07:07 -0700
commit4d4b1f9c1785a1f4fa5beb979b8c0dd1760723f6 (patch)
treeb01b98537dabeffc2ab140059091d3dcb5fbcceb /app
parent2e38cf3a40abb7ad18ea58b61c12450e69ab84fa (diff)
downloadAntennaPod-4d4b1f9c1785a1f4fa5beb979b8c0dd1760723f6.zip
make dexCount defaulted to disabled in debug build per reveiw feedback
Diffstat (limited to 'app')
-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 {