使用Android gradle插件v1.3.1运行./gradlew createDebugCoverageReport
用于给我一个包含代码覆盖百分比的html文件。
现在使用gradle 1.5.0甚至2.0.0-alpha7,报告更加有限,并且没有显示覆盖百分比。
如何重新启用覆盖率报告?
这是我的gradle配置:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.0.0-alpha7'
}
}
allprojects {
repositories {
jcenter()
}
}
和
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "some.id"
minSdkVersion 10
targetSdkVersion 23
testApplicationId applicationId + ".test"
testInstrumentationRunner "android.test.InstrumentationTestRunner"
}
buildTypes {
release {
// ...
}
debug {
debuggable true
testCoverageEnabled true
}
}
}
答案 0 :(得分:2)