搜索 Gradle 插件

版本 0.5.0 (最新版)

0.5.0

创建时间 2024年6月6日。

向安卓应用添加系统跟踪事件的插件

使用 插件 DSL

plugins {
  id("de.awenger.gretel") version "0.5.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("de.awenger:plugin:0.5.0")
  }
}

apply(plugin = "de.awenger.gretel")

使用 插件 DSL

plugins {
  id "de.awenger.gretel" version "0.5.0"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "de.awenger:plugin:0.5.0"
  }
}

apply plugin: "de.awenger.gretel"

了解如何将插件应用于子项目