搜索 Gradle 插件

版本 0.1.3 (最新版)

0.1.3

创建于 2018 年 7 月 12 日。

Gradle 插件,用于去除 Android 项目的字符串资源重复项

使用 插件 DSL

plugins {
  id("com.github.kazkn.gradle.strings-deduplication") version "0.1.3"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.kazkn.gradle:plugin:0.1.3")
  }
}

apply(plugin = "com.github.kazkn.gradle.strings-deduplication")

使用 插件 DSL

plugins {
  id "com.github.kazkn.gradle.strings-deduplication" version "0.1.3"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.kazkn.gradle:plugin:0.1.3"
  }
}

apply plugin: "com.github.kazkn.gradle.strings-deduplication"

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