Version 1.0 (latest)
1.0
Created 20 September 2018.
use tinyPNG api compress images
Using the plugins DSL:
plugins {
id("org.lovedev.tinypng-plugin") version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.lovedev:tinypng:1.0")
}
}
apply(plugin = "org.lovedev.tinypng-plugin")
Using the plugins DSL:
plugins {
id "org.lovedev.tinypng-plugin" version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.lovedev:tinypng:1.0"
}
}
apply plugin: "org.lovedev.tinypng-plugin"