"Message description not found" warnings in strings.xml

android, eclipse, xml

Solution

I have the same issue, since I've made an update of the SDK. I found a solution for this issue. Just add a comment before each string in your string.xml file, this will resolve the warnings.

Example below:

<!-- Description here -->
<string name="app_name">Test App</string>

Problem

I receive tons of annoying warnings from my strings.xml. To the left of each declaration I get a warning saying "Message description not found.". How can I fix it?

Original source