io.github.irgaly.remove-unused-resources
Owner: irgaly
A plugin removes unused resources discovered by Android Lint
https://github.com/irgaly/android-remove-unused-resources-plugin
Sources: https://github.com/irgaly/android-remove-unused-resources-plugin
Version 2.2.0 (latest)
2.2.0
Created 30 May 2024.
A plugin removes unused resources discovered by Android Lint
Using the plugins DSL:
plugins {
id("io.github.irgaly.remove-unused-resources") version "2.2.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.2.0")
}
}
apply(plugin = "io.github.irgaly.remove-unused-resources")
Using the plugins DSL:
plugins {
id "io.github.irgaly.remove-unused-resources" version "2.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.irgaly.remove-unused-resources:plugin:2.2.0"
}
}
apply plugin: "io.github.irgaly.remove-unused-resources"