我正在开展一个项目,这是一个巨大的项目。它由许多图像和布局组成。 我需要从一个命令中删除项目中未使用的图像和布局。当我用Google搜索http://code.google.com/p/android-unused-resources/时,我看到了这个用于安卓的链接。
但是没有太多可用的信息。 任何人都可以帮我了解删除未使用文件的步骤。
由于
答案 0 :(得分:1)
更新到ADT 16并使用Android Lint。这真是一个了不起的工具。
Android Lint是ADT 16(和工具16)的新工具,它可以扫描Android项目源中的潜在错误。
Here are some examples of the types of errors that it looks for:
- Missing translations (and unused translations)
- Layout performance problems (all the issues the old layoutopt tool used to find, and more)
- Unused resources
- Inconsistent array sizes (when arrays are defined in multiple configurations)
- Accessibility and internationalization problems (hardcoded strings, missing contentDescription, etc)
- Icon problems (like missing densities, duplicate icons, wrong sizes, etc)
- Usability problems (like not specifying an input type on a text field)
- Manifest errors
and many more.