org.neotech.plugin.rootcoverage
Owner: Rolf Smit
A Gradle plugin for easy generation of combined code coverage reports for Android projects with multiple modules.
https://github.com/NeoTech-Software/android-root-coverage-plugin
Sources: https://github.com/NeoTech-Software/Android-Root-Coverage-Plugin
Version 1.3.0 (latest)
1.3.0
Created 02 March 2020.
A Gradle plugin for easy generation of combined code coverage reports for Android projects with multiple modules.
Using the plugins DSL:
plugins {
id("org.neotech.plugin.rootcoverage") version "1.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.neotech.plugin:android-root-coverage-plugin:1.3.0")
}
}
apply(plugin = "org.neotech.plugin.rootcoverage")
Using the plugins DSL:
plugins {
id "org.neotech.plugin.rootcoverage" version "1.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.neotech.plugin:android-root-coverage-plugin:1.3.0"
}
}
apply plugin: "org.neotech.plugin.rootcoverage"