If i pass a string to my library it encodes some characters bad:
mylib.SaveStringToJson("https://play.google.com/store/apps/details?id=com.app")
This function saves a JSON file for library internal management, but inside some characters are changed like this:
[{"androidPlayStoreLink":"https://play.google.com/store/apps/details?id\u003dcom.app"}]
The equal(=) symbol is changed to
\u003d, in my lib the string is handled as Java String
I dont know if i need to set encoding or escape characters from B4A or from my Lib.
Help is very appreciated.