Search Gradle plugins

Version 1.1.0 (latest)

Created 03 March 2024.

Android Developer ASM Gradle Plugin

Using the plugins DSL:

plugins {
  id("io.github.leavesczy.trace") version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.leavesczy:trace:1.1.0")
  }
}

apply(plugin = "io.github.leavesczy.trace")

Using the plugins DSL:

plugins {
  id "io.github.leavesczy.trace" version "1.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.leavesczy:trace:1.1.0"
  }
}

apply plugin: "io.github.leavesczy.trace"

Learn how to apply plugins to subprojects