I'm trying to use the URI builder in Android to create a URL with variables. I have read Use URI builder in Android or create URL with variables, but some symbols that I need aren't covered in that.
An example of URL that I want to create:
I will want to substitute the ggscoord with a variable. I know how to append the path and query parameters... but what builder method should I use for the %7C and | ?
In order to modify query, you may use appendQueryParameter for plain strings like "|", any you may use encodedQuery for pre-encoded strings like "%7C".
There is no append method for pre-encoded query parameters.