io.github.irgaly.remove-unused-resources
所有者: irgaly
该插件移除了由 Android Lint 发现的未使用资源
https://github.com/irgaly/android-remove-unused-resources-plugin
来源: https://github.com/irgaly/android-remove-unused-resources-plugin
使用插件 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"