搜索Gradle插件

版本 0.41 (最新)

0.41

创建于2022年12月8日。

隐私哨兵的Gradle插件

使用插件DSL

plugins {
  id("io.github.season-max.privacy_sentry") version "0.41"
}

使用传统插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.season-max:privacy-plugin:0.41")
  }
}

apply(plugin = "io.github.season-max.privacy_sentry")

使用插件DSL

plugins {
  id "io.github.season-max.privacy_sentry" version "0.41"
}

使用传统插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.season-max:privacy-plugin:0.41"
  }
}

apply plugin: "io.github.season-max.privacy_sentry"

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