com.michaelmuenzer.drawableoptimizer
Owner: Michael Münzer
Optimize all pngs within your project
https://github.com/michaelmuenzer
Sources: https://github.com/michaelmuenzer/drawable-optimizer
Version 1.0.11 (latest)
1.0.11
Created 28 April 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("com.michaelmuenzer.drawableoptimizer") version "1.0.11"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.michaelmuenzer.drawable-optimizer:drawable-optimizer-gradle-plugin:1.0.11")
}
}
apply(plugin = "com.michaelmuenzer.drawableoptimizer")
Using the plugins DSL:
plugins {
id "com.michaelmuenzer.drawableoptimizer" version "1.0.11"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.michaelmuenzer.drawable-optimizer:drawable-optimizer-gradle-plugin:1.0.11"
}
}
apply plugin: "com.michaelmuenzer.drawableoptimizer"