搜索 Gradle 插件

io.github.duccuidetrpp.gmaeni

所有者: emthom99

为 minifyEnable 构建变体提供混淆字符串的 Android Gradle 插件

https://github.com/duccuideptrai/gmaeni

源代码: https://github.com/duccuideptrai/gmaeni

版本 1.0.0.1(最新版)

1.0.0.1

创建于 2022 年 1 月 24 日。

为 minifyEnable 构建变体提供混淆字符串的 Android Gradle 插件

使用 plugins DSL

plugins {
  id("io.github.duccuideptrai.gmaeni") version "1.0.0.1"
}

使用 旧的插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.duccuideptrai:gmaeni:1.0.0.1")
  }
}

apply(plugin = "io.github.duccuideptrai.gmaeni")

使用 plugins DSL

plugins {
  id "io.github.duccuideptrai.gmaeni" version "1.0.0.1"
}

使用 旧的插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.duccuideptrai:gmaeni:1.0.0.1"
  }
}

apply plugin: "io.github.duccuideptrai.gmaeni"

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