I\'m using Volley in Android to perform my app requests. Unfortunately, I\'m getting the following error:
com.android.volley.NoConnectionError: javax.net.ssl.SSL
The only method that worked for me was this
first put below method in your project Application
class
private void updateAndroidSecurityProvider() {
try {
ProviderInstaller.installIfNeeded(this);
} catch (Exception e) {
e.getMessage();
}
}
and then call it in onCreate
method.
I'm not faced any issue yet.
reference link