Commit 68b8a5e5 by eguven Committed by Oliver Woodman

Downgrade jacoco to 0.7.4.201502262128 as a workaround for 'stuck in endless loop' issue

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=151554130
parent 103c3b63
Showing with 11 additions and 6 deletions
...@@ -19,8 +19,15 @@ buildscript { ...@@ -19,8 +19,15 @@ buildscript {
classpath 'com.android.tools.build:gradle:2.3.0' classpath 'com.android.tools.build:gradle:2.3.0'
classpath 'com.novoda:bintray-release:0.4.0' classpath 'com.novoda:bintray-release:0.4.0'
} }
// Workaround for the following test coverage issue. Remove when fixed:
// https://code.google.com/p/android/issues/detail?id=226070
configurations.all {
resolutionStrategy {
force 'org.jacoco:org.jacoco.report:0.7.4.201502262128'
force 'org.jacoco:org.jacoco.core:0.7.4.201502262128'
}
}
} }
allprojects { allprojects {
repositories { repositories {
jcenter() jcenter()
......
...@@ -30,11 +30,9 @@ android { ...@@ -30,11 +30,9 @@ android {
} }
buildTypes { buildTypes {
// Re-enable test coverage when the following issue is fixed: debug {
// https://code.google.com/p/android/issues/detail?id=226070 testCoverageEnabled = true
// debug { }
// testCoverageEnabled = true
// }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment