If i pass a string to my library it encodes some characters bad:
This function saves a JSON file for library internal management, but inside some characters are changed like this:
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.
B4X:
mylib.SaveStringToJson("https://play.google.com/store/apps/details?id=com.app")
B4X:
[{"androidPlayStoreLink":"https://play.google.com/store/apps/details?id\u003dcom.app"}]
I dont know if i need to set encoding or escape characters from B4A or from my Lib.
Help is very appreciated.