io.github.leavesczy.track
Owner: leavesCZY
Android Developer Gradle Plugin
https://github.com/leavesCZY/Track
Sources: https://github.com/leavesCZY/Track
Version 1.1.0 (latest)
1.1.0
Created 05 October 2024.
Android Developer Gradle Plugin
Using the plugins DSL:
plugins {
id("io.github.leavesczy.track") version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.leavesczy:track:1.1.0")
}
}
apply(plugin = "io.github.leavesczy.track")
Using the plugins DSL:
plugins {
id "io.github.leavesczy.track" version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.leavesczy:track:1.1.0"
}
}
apply plugin: "io.github.leavesczy.track"