Search Gradle plugins

Version 1.0.1 (latest)

Created 17 December 2019.

Convert img to webp !

Using the plugins DSL:

plugins {
  id("com.desperado.apkreduce") version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.desperado.apkreduce:apkreduce:1.0.1")
  }
}

apply(plugin = "com.desperado.apkreduce")

Using the plugins DSL:

plugins {
  id "com.desperado.apkreduce" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.desperado.apkreduce:apkreduce:1.0.1"
  }
}

apply plugin: "com.desperado.apkreduce"

Learn how to apply plugins to subprojects