搜索Gradle插件

版本 1.0.3(最新版本)

1.0.3

创建日期:2021年5月21日。

一个用于跟踪Android应用方法成本的库

使用插件DSL

plugins {
  id("com.github.hank927.traceplugin") version "1.0.3"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.hank927:traceplugin:1.0.3")
  }
}

apply(plugin = "com.github.hank927.traceplugin")

使用插件DSL

plugins {
  id "com.github.hank927.traceplugin" version "1.0.3"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.hank927:traceplugin:1.0.3"
  }
}

apply plugin: "com.github.hank927.traceplugin"

学习如何将插件应用到子项目中