Recently, I realize Eclipse will not flag any error, if I have duplicated string.xml resource item. It allows me to run the application, or export it as signed APK.
<string name="demo">Demo</string>
..
..
<string name="demo">Pick Me</string>
For the above case, Pick Me
will be used.
Is there any technique I can use, to detect such duplicated items before deployment? This is bit scary for delivering wrong message to customer.