Last active
November 12, 2018 01:51
-
-
Save mtilbrook-dev/39d748f9a86e4079b8425cfec00a933d to your computer and use it in GitHub Desktop.
Revisions
-
Mitchell Tilbrook revised this gist
Nov 12, 2018 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,8 +4,8 @@ buildscript { jcenter() } dependencies { classpath 'com.android.tools.build:gradle:3.2.1' classpath 'org.jacoco:org.jacoco.core:0.8.2' } } plugins { -
Mitchell Tilbrook created this gist
Aug 1, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,24 @@ buildscript { repositories { google() jcenter() } dependencies { classpath 'com.android.tools.build:gradle:3.1.3' classpath 'org.jacoco:org.jacoco.core:0.8.1' } } plugins { id "com.palantir.jacoco-full-report" version "0.4.0" } allprojects { repositories { google() jcenter() } } task clean(type: Delete) { delete rootProject.buildDir }