Search Gradle plugins

Version 2.1.0 (latest)

Created 08 August 2023.

A plugin removes unused resources discovered by Android Lint

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.irgaly.remove-unused-resources:plugin:2.1.0"
  }
}

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

Learn how to apply plugins to subprojects