Skip to content

Instantly share code, notes, and snippets.

@mtilbrook-dev
Last active November 12, 2018 01:51
Show Gist options
  • Save mtilbrook-dev/d6964bb37f24e71129e313a94de4f5e4 to your computer and use it in GitHub Desktop.
Save mtilbrook-dev/d6964bb37f24e71129e313a94de4f5e4 to your computer and use it in GitHub Desktop.
JaCoCo Example Root Gradle
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'org.jacoco:org.jacoco.core:0.8.2'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment