eclipse - Removing all unused sound objects from android project -
i have android project contains lot of unused sound resources
is there way automatically remove unused resources android project including sounds ?
- lint can tell resources unused can remove them: invoke via android studio or hand:
lint --check unusedresources <project path>
- you can open generated
r.java
file , @ resources - unused highlighted same way other unused member (but careful it, java references count, not layout ones, or reference resource name via code) - you can use https://github.com/keepsafe/android-resource-remover (based on lint report)
Comments
Post a Comment