搜索 Gradle 插件

com.worker8.android_lint_reporter

所有者: 潭俊荣

Gradle 插件,用于将 Android Lint 结果解析、格式化并通过 GitHub Actions 传递回 GitHub Pull Request

https://github.com/worker8/AndroidLintReporter

源码: https://github.com/worker8/AndroidLintReporter

版本 2.1.0 (最新版本)

2.1.0

创建于 2021年4月22日。

Gradle 插件,用于将 Android Lint 结果解析、格式化并通过 GitHub Actions 传递回 GitHub Pull Request

使用plugins DSL

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

使用旧版插件应用

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

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

使用plugins DSL

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

使用旧版插件应用

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

apply plugin: "com.worker8.android_lint_reporter"

了解如何将插件应用于子项目