« | Main | »

March 17, 2010

find_unused_images is a script to find unused images in an Android project, so you're not releasing bloated software with unused resources. By unsused, these images are not reference in Java code or XML markup. Without arguments it simply prints the imgage paths; passing the -s prints a little summary like:
# images            :        129
# found             :         75
# unused            :         54
size images (bytes) :     205591
size found  (bytes) :      89599
size unused (bytes) :     115992
And, passing the -m will move these images into a unique, new directory.

Posted by jeff at March 17, 2010 02:53 PM