5

我正在开发一个非常大的 android 项目,并且在可绘制文件夹中有许多图像。其中许多图像没有在项目中使用(因为它们已被替换)并且它们占用了宝贵的空间。有什么方法可以自动找到这些图像并删除它们,而不是搜索项目中的每个图像?

4

3 回答 3

2

我用过的一些工具是

android未使用的资源

安卓皮棉

其中一项功能确实说

未使用的资源

于 2013-07-18T06:18:47.010 回答
1

We open sources a tool that removes all unused resources automatically from your project based on android lint output. Even unused strings and other 'inline' resources.

https://github.com/KeepSafe/android-resource-remover

于 2014-04-29T19:31:15.303 回答
0

现在我们可以用 gradle 自动完成

 buildTypes {
            release {
                minifyEnabled true
                shrinkResources true
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            }
        }

更多细节在这里 https://sites.google.com/a/android.com/tools/tech-docs/new-build-system/resource-shrinking

于 2015-12-02T16:25:32.510 回答