Android : Automatically remove unused images from project bundle
android, bundle, image
Solution
Some tools I have used are
android unused resources
and
android lint
One of the features does say
Unused resources
Problem
I am developing an android project that is pretty big and have many images in drawable folder. Many of these images are not being used in the project (because they have been replaced) and they consume valuable space. Is there any way that I could automatically find those images and delete them, instead of searching through each image in the project?