Other Updates to internal libraries

Libraries from this thread should be copied to the internal libraries folder:
C:\Program Files (x86)\Anywhere Software\B4R\libraries

Make sure to check your current installed version as it might be newer.
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
v1.58 - New WiFi.ConnectAsync method:
B4X:
wifi.ConnectAsync("TP-LINK", "password", 0, Null, "wifi_Connected")

Sub WiFi_Connected (Success As Boolean)
    Log("connected: ", Success)
    If Success Then
        HttpJob.Initialize("Example")
        HttpJob.Download("https://www.example.com")
    End If
End Sub
 
Top