Owner:
Kim
gradle plugin to compress android png by using pngquant refer to https://github.com/imagemin/pngquant-bin and https://github.com/pornel/pngquant
Sources: https://github.com/
Version 1.0.3 (latest)
Created 28 November 2017.
gradle plugin to compress android png by using pngquant
refer to https://github.com/imagemin/pngquant-bin and https://github.com/pornel/pngquant
Add this plugin to your build using the plugins DSL:
plugins {
id("cn.jony.compress.png") version "1.0.3"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("cn.jony.compress.png:cn.jony.compress.png.gradle.plugin:1.0.3") }It can then be applied in the precompiled script plugin:plugins { id("cn.jony.compress.png") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("cn.jony.compress.png:cn.jony.compress.png.gradle.plugin:1.0.3") } } apply(plugin = "cn.jony.compress.png") - Applying plugins to all subprojects .