Search Gradle plugins

Version 1.0.9

1.0.9

Created 28 April 2017.

Optimize all png and jpg drawables within your project

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.michaelmuenzer.drawableoptimizer") version "1.0.9"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.michaelmuenzer.drawable-optimizer:drawable-optimizer-gradle-plugin:1.0.9")
      }
    }
    
    apply(plugin = "com.michaelmuenzer.drawableoptimizer")
  • Applying plugins to all subprojects .