com.hguang.res.cleaner
Owner: Michael
Android clean res after lint.
Sources: https://github.com/HGuangZJH
Version 1.0.0 (latest)
1.0.0
Created 09 March 2019.
Android clean res after lint.
Using the plugins DSL:
plugins {
id("com.hguang.res.cleaner") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.hguang.gradle:plugin:1.0.3")
}
}
apply(plugin = "com.hguang.res.cleaner")
Using the plugins DSL:
plugins {
id "com.hguang.res.cleaner" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.hguang.gradle:plugin:1.0.3"
}
}
apply plugin: "com.hguang.res.cleaner"