Android Question Best Solution for create a library to use HttpJob

Alberto Iglesias

Well-Known Member
Licensed User
Longtime User
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?

B4X:
Dim j As HttpJob
j.Initialize("", Me)
j.Download(strEndpoint)
       
Wait For (j) JobDone(j As HttpJob)
If j.Success Then
End If
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
Upvote 0
Top