Add support for recording code coverage

This commit is contained in:
cketti 2014-12-18 12:50:33 +01:00
parent 3760ca95d5
commit df8a823e41
1 changed files with 6 additions and 1 deletions

View File

@ -34,6 +34,7 @@ dependencies {
}
project.ext.preDexLibs = !project.hasProperty('disablePreDex')
project.ext.testCoverage = project.hasProperty('testCoverage')
subprojects {
project.plugins.whenPluginAdded { plugin ->
@ -46,7 +47,7 @@ subprojects {
android {
compileSdkVersion 21
buildToolsVersion '20.0.0'
buildToolsVersion '21.1.2'
defaultConfig {
minSdkVersion 15
@ -82,6 +83,10 @@ android {
signingConfig signingConfigs.release
}
}
debug {
testCoverageEnabled rootProject.testCoverage
}
}
// Do not abort build if lint finds errors