Search Gradle plugins

Version 0.1.0-alpha.1

0.1.0-alpha.1

Created 12 July 2023.

The JaCoCoReportAggregationAndroidPlugin plugin provides code coverage metrics for multi-module Android project.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.apvasanth03.jacoco-report-aggregation-android") version "0.1.0-alpha.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.apvasanth03:jacoco-android-gradle-plugin:0.1.0-alpha.1")
      }
    }
    
    apply(plugin = "io.github.apvasanth03.jacoco-report-aggregation-android")
  • Applying plugins to all subprojects .