I am trying to put the characters '<' '>' in a string resource.
If I use the HTML encoding inside the string:
<>
it works in the first build. However, after another build of the project, something automatically converts it to:
&lt;&gt;
So I can't use the previous encoding...
Trying to put "<" or even "\<" in the string will generate an XML error.
Trying to use CDATA will have the same behavior as above.
How do I put a '<' or '>' character with this crap?
UPDATE
I have added the "eclipse" tags, since after some discussion, it seems like an eclipse problem - something automatically edits my XML files. The updated question is - why does eclipse sometimes mess up my strings.xml file and try to encode special characters on its own?