Search Gradle plugins

Version 1.3.1

Created 28 January 2022.

A plugin removes unused resources discovered by Android Lint

Using the plugins DSL:

plugins {
  id("io.github.irgaly.remove-unused-resources") version "1.3.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.irgaly:plugin:1.3.1")
  }
}

apply(plugin = "io.github.irgaly.remove-unused-resources")

Using the plugins DSL:

plugins {
  id "io.github.irgaly.remove-unused-resources" version "1.3.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.irgaly:plugin:1.3.1"
  }
}

apply plugin: "io.github.irgaly.remove-unused-resources"

Learn how to apply plugins to subprojects