当前位置:   article > 正文

Android Studio资源自动清理工具 - Lint Cleaner Plugin_android-studio 自动清理maven

android-studio 自动清理maven

文章参考自: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'
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

然后在项目根目录下,执行清理命令,

gradle lintClean

或者

./gradlew lintClean

废弃资源一扫而空。

这里写图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/646471
推荐阅读
相关标签
  

闽ICP备14008679号