Gson Builder — HTML Escaping
In this blog post, we'll explore an interesting behavior of Gson: HTML escaping. By default, Gson escapes typical HTML characters, like < or > to \u003c and \u003e. If your server can handle these tags just fine, you might be interested in disabling this behavior. In this tutorial we'll show …
Continue Reading