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.1.3

1.1.3

Created 20 May 2020.

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.worker8.android_lint_reporter:android_lint_reporter:1.1.3")
      }
    }
    
    apply(plugin = "com.worker8.android_lint_reporter")
  • Applying plugins to all subprojects .