com.nlgtuankiet.deleres
Owner: Nguyễn Lương Tuấn Kiệt
Remove all unused resource in your Android project
https://github.com/nlgtuankiet/deleres
Sources: https://github.com/nlgtuankiet/deleres
Version 0.1.6 (latest)
0.1.6
Created 15 June 2020.
Remove all unused resource in your Android project
Using the plugins DSL:
plugins {
id("com.nlgtuankiet.deleres") version "0.1.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.nlgtuankiet.deleres:gradle-plugin:0.1.6")
}
}
apply(plugin = "com.nlgtuankiet.deleres")
Using the plugins DSL:
plugins {
id "com.nlgtuankiet.deleres" version "0.1.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.nlgtuankiet.deleres:gradle-plugin:0.1.6"
}
}
apply plugin: "com.nlgtuankiet.deleres"