Search Gradle plugins

Version 1.0.0

1.0.0

Created 03 March 2024.

Android Developer ASM Gradle Plugin

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.leavesczy:trace:1.0.0")
      }
    }
    
    apply(plugin = "io.github.leavesczy.trace")
  • Applying plugins to all subprojects .