make dexCount defaulted to disabled in debug build per reveiw feedback

This commit is contained in:
orionlee 2018-05-13 15:07:07 -07:00
parent 2e38cf3a40
commit 4d4b1f9c17

View File

@ -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 {