com.github.konifar.gradle.unused-resources-remover
所有者: 堀田祐介
Gradle插件,用于删除Android项目中的未使用资源
https://github.com/konifar/gradle-unused-resources-remover-plugin
源码: https://github.com/konifar/gradle-unused-resources-remover-plugin
使用插件DSL
plugins {
id("com.github.konifar.gradle.unused-resources-remover") version "0.3.3"
}
使用旧插件应用模式
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.konifar.gradle:plugin:0.3.3")
}
}
apply(plugin = "com.github.konifar.gradle.unused-resources-remover")
使用插件DSL
plugins {
id "com.github.konifar.gradle.unused-resources-remover" version "0.3.3"
}
使用旧插件应用模式
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.konifar.gradle:plugin:0.3.3"
}
}
apply plugin: "com.github.konifar.gradle.unused-resources-remover"