Search Gradle plugins

Version 0.1.4

Created 18 September 2016.

A plugin for automatic upload of application's ProGuard map files
For more info please visit: [The documentation page][doc]
This plugin is still in beta, plase [contact us][mail] if you have issues/suggestions.

[doc]: <https://www.gryphonet.com/docs-content.html#android>
[mail]: <https://www.gryphonet.com/docs-content.html#android>

Using the plugins DSL:

plugins {
  id("com.gryphonet.gradle.proguardplugin") version "0.1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.gryphonet.gradle:gryphonet-gradle-proguard-plugin:0.1.4")
  }
}

apply(plugin = "com.gryphonet.gradle.proguardplugin")

Using the plugins DSL:

plugins {
  id "com.gryphonet.gradle.proguardplugin" version "0.1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.gryphonet.gradle:gryphonet-gradle-proguard-plugin:0.1.4"
  }
}

apply plugin: "com.gryphonet.gradle.proguardplugin"

Learn how to apply plugins to subprojects