io.github.galvin.code-coverage
Owner: Chan
A gradle plugin for Android which can inspect incremental code test coverage
https://github.com/GalvinChen/IncrementalCoverage
Sources: https://github.com/GalvinChen/IncrementalCoverage
Version 0.0.1 (latest)
0.0.1
Created 17 December 2020.
A gradle plugin for Android which can inspect incremental code test coverage
Using the plugins DSL:
plugins {
id("io.github.galvin.code-coverage") version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github:plugin:0.0.1")
}
}
apply(plugin = "io.github.galvin.code-coverage")
Using the plugins DSL:
plugins {
id "io.github.galvin.code-coverage" version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github:plugin:0.0.1"
}
}
apply plugin: "io.github.galvin.code-coverage"