Reputation: 5
Ctrl+shift+alt+i will list the unused resources but how to delete them ? do we need to delete them manually? like in eclipse it used to give red error mark on unused resources so that we can delete them directly.
Upvotes: 0
Views: 2334
Reputation: 336
You use Android Lint to detect unused resources.
In Android Studio go to Analyze > Inspect Code
to perform an static code analysis and safely traverse through your unused resources.
Upvotes: 2
Reputation: 11329
Upvotes: 3