Hi All!
I’m a new user and newbie with Xojo. (But an old developer with other tools).
I’m just trying to develop an android app and found some problems that may be something that i ignore.
The android app will check the user with a webservice server (made with Xojo too).
If I try with an application made for desktop all works fine: encode the json message and send it to the server in the body POST.
But when i try the same code in Android I have got a different json.
I also try with a simple app that only do the json string and i have got the same thing.
The code is:
Var e As New Dictionary
e.Value(“usuario”) = “e”
e.value(“clave”) = “1”
Var item As New JSONItem
item.Value(“Usuario”) = e
MessageBox( item.ToString)
In Desktop:
In Android:
I use Xojo 2023r3 in Linux Kubuntu 22.04
Thanks in advance
var datos as New JSONItem
datos.Value("usuario") = "edu"
datos.Value("clave") = "123"
var bloque as New JSONItem
bloque.Value("Usuario") = datos
MessageBox(bloque.ToString)