com.gryphonet.gradle.proguardplugin
Owner: Simon Mier Yakov
A plugin for automatic upload of application's ProGuard map files
Sources: https://bitbucket.org/gryphteam/buildintegration
Version 0.1.6 (latest)
0.1.6
Created 18 September 2016.
A plugin for automatic upload of application's ProGuard map files
For more info please visit: https://www.gryphonet.com/docs-content.html#android
The documentation page
This plugin is still in beta, plase contact us support@gryphonet.com with issues.
Using the plugins DSL:
plugins {
id("com.gryphonet.gradle.proguardplugin") version "0.1.6"
}
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.6")
}
}
apply(plugin = "com.gryphonet.gradle.proguardplugin")
Using the plugins DSL:
plugins {
id "com.gryphonet.gradle.proguardplugin" version "0.1.6"
}
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.6"
}
}
apply plugin: "com.gryphonet.gradle.proguardplugin"