搜索Gradle插件

版本 1.0.1(最新版)

1.0.1

创建于 2021年6月30日。

这是一个用于插入显示onPause日志代码的插件

使用插件 DSL

plugins {
  id("com.github.fushuang.transform") version "1.0.1"
}

使用旧插件应用程序

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

apply(plugin = "com.github.fushuang.transform")

使用插件 DSL

plugins {
  id "com.github.fushuang.transform" version "1.0.1"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.fushuang:frooter:1.0.1"
  }
}

apply plugin: "com.github.fushuang.transform"

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