com.ssynhtn.finddupres
Owner: ssynhtn Huang
A plugin to check duplicate resource files in android projects
https://github.com/ssynhtn/findDupRes/
Sources: https://github.com/ssynhtn/findDupRes
Version 1.0.0 (latest)
1.0.0
Created 08 January 2021.
A plugin to check duplicate resource files in android projects
Using the plugins DSL:
plugins {
id("com.ssynhtn.finddupres") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.ssynhtn:plugin:1.0.0")
}
}
apply(plugin = "com.ssynhtn.finddupres")
Using the plugins DSL:
plugins {
id "com.ssynhtn.finddupres" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.ssynhtn:plugin:1.0.0"
}
}
apply plugin: "com.ssynhtn.finddupres"