Search Gradle plugins

com.worker8.android_lint_reporter

Gradle Plugin to parse, format, report Android Lint result back to Github Pull Request using Github Actions

https://github.com/worker8/AndroidLintReporter

Sources: https://github.com/worker8/AndroidLintReporter

Version 1.0.1

Created 22 March 2020.

Gradle Plugin to parse, format, report Android Lint result back to Github Pull Request using Github Actions

Using the plugins DSL:

plugins {
  id("com.worker8.android_lint_reporter") version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.worker8.android_lint_reporter:android_lint_reporter:1.0.1")
  }
}

apply(plugin = "com.worker8.android_lint_reporter")

Using the plugins DSL:

plugins {
  id "com.worker8.android_lint_reporter" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.worker8.android_lint_reporter:android_lint_reporter:1.0.1"
  }
}

apply plugin: "com.worker8.android_lint_reporter"

Learn how to apply plugins to subprojects