In my android code, I am trying to connect to one particular url like
URL url = new URL(urlStr);
HttpsURLConnection connection = (HttpsURLConnection) url.openConnection();
Here my app is trying to connect to the url(https) via SSL in some set of mobile phones and uses TLS as underlying protocol. Since the target server only accepts TLS it's failing for the mobile phones which initiates https connections via SSL.
Have confirmed the above behavior's via wireshark.
Is there a way like my app can initiate https connections only via TLS.
Thanks.