I have a file with strings in my ../res/values/strings.xml, which I try to source for my project. This works fine with normal texts. Problem : I have single quotes in my tex
You can use \' in your string resources.
\'
you need to escape the apostrophe by using
\ before '
etc didn't should be like
didn\'t
Use double quotes:
<string name="mystring_id">"'Hello'"</string>