We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7071eb commit 2f1a291Copy full SHA for 2f1a291
.travis.yml
@@ -9,7 +9,7 @@ android:
9
- extra
10
11
script:
12
- - ./gradlew check test
+ - ./gradlew test
13
14
after_success:
15
- bash <(curl -s https://codecov.io/bash)
build.gradle
@@ -6,6 +6,7 @@ buildscript {
6
dependencies {
7
classpath 'com.android.tools.build:gradle:3.2.1'
8
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.11"
+ classpath "com.vanniktech:gradle-android-junit-jacoco-plugin:0.13.0"
}
@@ -16,6 +17,9 @@ allprojects {
16
17
18
19
20
+
21
task clean(type: Delete) {
22
delete rootProject.buildDir
23
24
25
+apply plugin: "com.vanniktech.android.junit.jacoco"
0 commit comments