com.geektime.systrace
Owner: dongjiangpeng
This plugin adds systrace to each method
https://github.com/jpdong/SystracePlugin
Sources: https://github.com/jpdong/SystracePlugin.git
Version 1.0.2 (latest)
1.0.2
Created 03 December 2019.
This plugin adds systrace to each method
Using the plugins DSL:
plugins {
id("com.geektime.systrace") version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.geektime.systrace:systrace-gradle-plugin:1.0.2")
}
}
apply(plugin = "com.geektime.systrace")
Using the plugins DSL:
plugins {
id "com.geektime.systrace" version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.geektime.systrace:systrace-gradle-plugin:1.0.2"
}
}
apply plugin: "com.geektime.systrace"