Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"Message description not found" warnings in strings.xml

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?

like image 914
HAL9000 Avatar asked Dec 09 '13 15:12

HAL9000


1 Answers

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>
like image 166
technik Avatar answered Oct 12 '22 23:10

technik