Search Gradle plugins

Version 1.0.3 (latest)

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"

Learn how to apply plugins to subprojects