cn.cxzheng.asmtraceman
Owner: DavidSu
method time consuming trace(方法耗时插桩)
https://github.com/zhengcx/MethodTraceMan
Sources: https://github.com/zhengcx/MethodTraceMan.git
Version 1.0.4 (latest)
1.0.4
Created 22 December 2019.
method time consuming trace(方法耗时插桩)
Using the plugins DSL:
plugins {
id("cn.cxzheng.asmtraceman") version "1.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.cn.cxzheng.methodTracePlugin:tracemanplugin:1.0.4")
}
}
apply(plugin = "cn.cxzheng.asmtraceman")
Using the plugins DSL:
plugins {
id "cn.cxzheng.asmtraceman" version "1.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.cn.cxzheng.methodTracePlugin:tracemanplugin:1.0.4"
}
}
apply plugin: "cn.cxzheng.asmtraceman"