stringReq = StringRequest(Request.Method.GET, url, Response.Listener<String> { response ->
var strResp = response.toString()
textView!!.text = "response : $strResp "
}, com.android.volley.Response.ErrorListener {
textView!!.text = it.toString()
})
com.android.volley.NoConnectionError: javax.net.ssl.SSLHandshakeException: java.security.cert.CertPathValidatorException: Trust anchor for certification path not found.
проверьте ssl сертификат на своем сайте
https://developer.android.com/training/articles/security-ssl.html
Обсуждают сегодня