io.github.leavesczy.trace
Owner: leavesCZY
Android Developer ASM Gradle Plugin
https://github.com/leavesCZY/Trace
Sources: https://github.com/leavesCZY/asm-samples
Version 1.2.0 (latest)
1.2.0
Created 11 July 2024.
Android Developer ASM Gradle Plugin
Using the plugins DSL:
plugins {
id("io.github.leavesczy.trace") version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.leavesczy:convention:1.2.0")
}
}
apply(plugin = "io.github.leavesczy.trace")
Using the plugins DSL:
plugins {
id "io.github.leavesczy.trace" version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.leavesczy:convention:1.2.0"
}
}
apply plugin: "io.github.leavesczy.trace"