728x90
반응형
SMALL
handshake failed; returned -1, SSL error code 1, net_error -200
안드로이드 인증서 오류발생
개발 단계에서 인증서 관련 내용을 무시하면 해결됨.
webViewClient = object : WebViewClient() {
override fun onReceivedSslError(
view: WebView?,
handler: SslErrorHandler?,
error: SslError?
) {
// super.onReceivedSslError(view, handler, error)
handler!!?.proceed()
}
728x90
반응형
LIST
'개발' 카테고리의 다른 글
[Nexacro][Grid] no data text 안보임 (0) | 2025.04.28 |
---|---|
javascript 소수점 버림, 올림, 반올림 (0) | 2025.03.20 |
[Oracle] sysdate 90일 체크 (0) | 2025.02.11 |
[Oracle] ORA-01790: 대응하는 식과 같은 데이터 유형이어야 합니다 (0) | 2025.02.07 |
[Eclipse] xml 쿼리에서 기울임 글씨 변경하기 (1) | 2025.01.21 |