io.github.noproxy.android-plugin-kit-plugin
所有者: 易宇航
一个用于帮助基于Android Gradle插件的Gradle插件开发的插件。
https://noproxy.github.io/gradle-plugin-kit
源代码: https://github.com/noproxy/gradle-plugin-kit
使用插件DSL
plugins {
id("io.github.noproxy.android-plugin-kit-plugin") version "0.0.2"
}
使用旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.noproxy:android-plugin-kit-plugin:0.0.2")
}
}
apply(plugin = "io.github.noproxy.android-plugin-kit-plugin")
使用插件DSL
plugins {
id "io.github.noproxy.android-plugin-kit-plugin" version "0.0.2"
}
使用旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.noproxy:android-plugin-kit-plugin:0.0.2"
}
}
apply plugin: "io.github.noproxy.android-plugin-kit-plugin"