io.github.noproxy.android-plugin-kit-plugin
Owner: Yi Yazhou
A plugin to help developing gradle plugin based on android Gradle Plugin.
https://noproxy.github.io/gradle-plugin-kit
Sources: https://github.com/noproxy/gradle-plugin-kit
Version 0.0.2 (latest)
0.0.2
Created 14 August 2019.
A plugin to help developing gradle plugin based on android Gradle Plugin.
Using the plugins DSL:
plugins {
id("io.github.noproxy.android-plugin-kit-plugin") version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.noproxy:android-plugin-kit-plugin:0.0.2")
}
}
apply(plugin = "io.github.noproxy.android-plugin-kit-plugin")
Using the plugins DSL:
plugins {
id "io.github.noproxy.android-plugin-kit-plugin" version "0.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.noproxy:android-plugin-kit-plugin:0.0.2"
}
}
apply plugin: "io.github.noproxy.android-plugin-kit-plugin"