Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to know if there is the way to find out which resources (layouts, strings, colors etc. from res-folder) are not used in my android project.

What I mean, in my app I have some old strings, which won't be used anymore and I would like to remove them from the string.xml

Thank you in advance.

Ps. I'm using Eclipse for developing

share|improve this question

1 Answer

up vote 7 down vote accepted

A swift google search brought up this project: http://code.google.com/p/android-unused-resources/

After running the jar, all the unused resources of your project are being displayed.

share|improve this answer
thank you for the link – Mur Votema Apr 14 '11 at 13:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.