io.github.electrolytej.lint-plugin
所有者: 电解te
一个帮助您轻松使用android lint的插件
https://github.com/big-frontend/module-assembler/tree/main/module-assembler-gradle-plugin
来源: https://github.com/big-frontend/module-assembler.git
版本 1.0.0(最新版本)
1.0.0
创建于 2024年7月25日。
一个帮助您轻松使用android lint的插件
使用插件DSL
plugins {
id("io.github.electrolytej.lint-plugin") version "1.0.0"
}
使用旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.electrolytej:module-assembler-gradle-plugin:1.0.0")
}
}
apply(plugin = "io.github.electrolytej.lint-plugin")
使用插件DSL
plugins {
id "io.github.electrolytej.lint-plugin" version "1.0.0"
}
使用旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.electrolytej:module-assembler-gradle-plugin:1.0.0"
}
}
apply plugin: "io.github.electrolytej.lint-plugin"