Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android : Automatically remove unused images from project bundle

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?

like image 978
Dim Avatar asked Oct 22 '22 05:10

Dim


1 Answers

Some tools I have used are

android unused resources

and

android lint

One of the features does say

Unused resources

like image 94
taxeeta Avatar answered Oct 29 '22 18:10

taxeeta