io.github.tiyateam.fastHackPlugin
Owner: 荔枝提亚
Replace Android module dependency with AAR dependency at compile time.
https://github.com/TIYATEAM/FastBuilder
Sources: https://github.com/TIYATEAM/FastBuilder
Version 2.0.36 (latest)
2.0.36
Created 25 March 2022.
Replace JavaCompileCreationAction for custom increment
Using the plugins DSL:
plugins {
id("io.github.tiyateam.fastHackPlugin") version "2.0.36"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.tiyateam.fastbuilder:FastBuilder:2.0.36")
}
}
apply(plugin = "io.github.tiyateam.fastHackPlugin")
Using the plugins DSL:
plugins {
id "io.github.tiyateam.fastHackPlugin" version "2.0.36"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.tiyateam.fastbuilder:FastBuilder:2.0.36"
}
}
apply plugin: "io.github.tiyateam.fastHackPlugin"