赞
踩
文章参考自:https://github.com/marcoRS/lint-cleaner-plugin
Android项目随着迭代时间越来越长,代码废弃资源也会越来越多。
Lint Cleaner Plugin这个github源上小工具,简单易用,省去了不少麻烦。
首先,配置一下app的build.gradle文件
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.12.+'
classpath 'com.droidtitan:lint-cleaner-plugin:0.3.0'
}
}
apply plugin: 'android'
apply plugin: 'com.droidtitan.lintcleaner'
然后在项目根目录下,执行清理命令,
gradle lintClean
或者
./gradlew lintClean
废弃资源一扫而空。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。