hi
i download a file with this Code
on "New" Device (Android 5?) it works Fine
on older Device (Android 4.x.x) i get en error wirh the SSL:
javax.net.ssl.SSLHandshakeException: javax.net.ssl.SSLProtocolException: SSL handshake aborted: ssl=0x65a77d40: Failure in SSL library, usually a protocol error
error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version (external/openssl/ssl/s23_clnt.c:741 0x41d0f77a:0x00000000)
i download a file with this Code
B4X:
Sub Process_Globals
Dim hl As OkHttpClient
End Sub
Sub Service_Create
hl.InitializeAcceptAll("hl")
End Sub
Public Sub StartDownload
Dim req As OkHttpRequest
req.InitializeGet(GPX_Target)
hl.Execute(req,1)
end sub
hl_Response.......
on "New" Device (Android 5?) it works Fine
on older Device (Android 4.x.x) i get en error wirh the SSL:
javax.net.ssl.SSLHandshakeException: javax.net.ssl.SSLProtocolException: SSL handshake aborted: ssl=0x65a77d40: Failure in SSL library, usually a protocol error
error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version (external/openssl/ssl/s23_clnt.c:741 0x41d0f77a:0x00000000)