com.github.hank927.traceplugin
Owner: hank927
a library for android apps to trace the method costï¼
https://github.com/hank927/TracePlugin
Sources: https://github.com/hank927/TracePlugin
Version 1.0.3 (latest)
1.0.3
Created 21 May 2021.
a library for android apps to trace the method cost
Using the plugins DSL:
plugins {
id("com.github.hank927.traceplugin") version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.hank927:traceplugin:1.0.3")
}
}
apply(plugin = "com.github.hank927.traceplugin")
Using the plugins DSL:
plugins {
id "com.github.hank927.traceplugin" version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.hank927:traceplugin:1.0.3"
}
}
apply plugin: "com.github.hank927.traceplugin"