5

Is there a way in Android Studio to see unused resources?

For example, I have a large list of drawables, say icons, and I want to know if there are any that are not used in my app so that I can delete them. Is there a way to see that?

I'm on Mac.

Terry
  • 14,529
  • 13
  • 63
  • 88

2 Answers2

2

Try this in command line:

lint --check UnusedResources <project_directory>
klimat
  • 24,711
  • 7
  • 63
  • 70
1

I found these two tools useful

Santosh Joshi
  • 3,290
  • 5
  • 36
  • 49