Merge pull request #2669 from orionlee/build_tweak_dexcount_optional_in_debug
Build tweak: Speed up debug build by making dexcount optional in debug build
This commit is contained in:
commit
48294a9f18
|
@ -84,6 +84,13 @@ android {
|
||||||
resValue "string", "provider_authority", "de.danoeh.antennapod.debug.provider"
|
resValue "string", "provider_authority", "de.danoeh.antennapod.debug.provider"
|
||||||
buildConfigField STRING, FLATTR_APP_KEY, mFlattrAppKey
|
buildConfigField STRING, FLATTR_APP_KEY, mFlattrAppKey
|
||||||
buildConfigField STRING, FLATTR_APP_SECRET, mFlattrAppSecret
|
buildConfigField STRING, FLATTR_APP_SECRET, mFlattrAppSecret
|
||||||
|
dexcount {
|
||||||
|
if (project.hasProperty("enableDexcountInDebug")) {
|
||||||
|
runOnEachPackage enableDexcountInDebug.toBoolean()
|
||||||
|
} else { // default to not running dexcount
|
||||||
|
runOnEachPackage false
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
release {
|
release {
|
||||||
resValue "string", "provider_authority", "de.danoeh.antennapod.provider"
|
resValue "string", "provider_authority", "de.danoeh.antennapod.provider"
|
||||||
|
|
Loading…
Reference in New Issue