Hello everyone,
I will create some library .b4xlib to make requests to make life easy on both platforms.
What's the best solution for create this?
In my mind, I think for to this is create a service on .b4xlib for B4A and Module for B4i, is that better option?
I will create some library .b4xlib to make requests to make life easy on both platforms.
What's the best solution for create this?
In my mind, I think for to this is create a service on .b4xlib for B4A and Module for B4i, is that better option?
B4X:
Dim j As HttpJob
j.Initialize("", Me)
j.Download(strEndpoint)
Wait For (j) JobDone(j As HttpJob)
If j.Success Then
End If