Search Gradle plugins

Version 2.0.36 (latest)

Created 25 March 2022.

Replace Android module dependency with AAR dependency at compile time.

Using the plugins DSL:

plugins {
  id("io.github.tiyateam.fastbuilder") 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.fastbuilder")

Using the plugins DSL:

plugins {
  id "io.github.tiyateam.fastbuilder" 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.fastbuilder"

Learn how to apply plugins to subprojects