Search Gradle plugins

io.github.duccuideptrai.gmaeni

Owner: emthom99

Android Gradle plugin providing obfuscator string for minifyEnable build variants

https://github.com/duccuideptrai/gmaeni

Sources: https://github.com/duccuideptrai/gmaeni

Version 1.0.0.1 (latest)

Created 24 January 2022.

Android Gradle plugin providing obfuscator string for minifyEnable build variants

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects