Reputation: 271
I have been googling for some time and I can't seem to find an answer to this. When I simulate the app the special characters (such as á,à,â,ř...) are displayed correctly. But the moment I build it and install it on my Android device they are displayed like:
Any idea of why this is happening and how to fix it?
Thanks!
Upvotes: 1
Views: 43
Reputation: 66
You can simply add charset="UTF-8" in your meta tag of your html page which will display the special characters as they are represented.
Upvotes: 0
Reputation: 271
For future people wondering, the solution was adding this:
<meta charset="UTF-8">
To the head of the html document.
Upvotes: 1