搜索Gradle插件

版本 0.3.3 (最新)

0.3.3

创建于 2018年5月19日。

Gradle插件,用于删除Android项目中的未使用资源

使用插件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"

了解如何将插件应用到子项目中