搜索 Gradle 插件

版本 2.2.0(最新版)

2.2.0

创建于 2024年5月30日。

该插件移除了由 Android Lint 发现的未使用资源

使用插件 DSL

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

使用旧的插件应用

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

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

使用插件 DSL

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

使用旧的插件应用

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

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

学习如何将插件应用到子项目