de.egym.shrink
Owner: Michael Münzer
Optimize all png and jpg drawables within your project
Sources: https://github.com/egymgmbh/shrink
Version 1.0.0 (latest)
1.0.0
Created 12 May 2017.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Optimize all png and jpg drawables within your project
Using the plugins DSL:
plugins {
id("de.egym.shrink") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.de.egym.shrink:shrink-gradle-plugin:1.0.0")
}
}
apply(plugin = "de.egym.shrink")
Using the plugins DSL:
plugins {
id "de.egym.shrink" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.de.egym.shrink:shrink-gradle-plugin:1.0.0"
}
}
apply plugin: "de.egym.shrink"