com.worker8.android_lint_reporter
Owner: Tan Jun Rong
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 2.0.0-debug6
2.0.0-debug6
Created 08 April 2021.
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 "2.0.0-debug6"
}
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:2.0.0-debug6")
}
}
apply(plugin = "com.worker8.android_lint_reporter")
Using the plugins DSL:
plugins {
id "com.worker8.android_lint_reporter" version "2.0.0-debug6"
}
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:2.0.0-debug6"
}
}
apply plugin: "com.worker8.android_lint_reporter"