[Error] WebView loadUrl 호출시 Webpage not available, net::ERR_CLEARTEXT_NOT_PERMITTED 발생
Android OS 9 Pie 버전부터는 WebView에 http URL 접근이 막힘. (tagetSdkVersion 28 이상) https 가 없어 http를 사용해야 할 경우 아래의 방법으로 처리 □ 방법 1. AndroidManifest.xml 설정 # AndroidManifest.xml application 에 android:usesCleartextTraffic = true 를 추가 □ 방법 2. 네트워크 보안 구성 - 일반 텍스트 트래픽 선택 # res/xml/network_security_config.xml 추가 test.com # AndroidManifest.xml application에 android:networkSecurityConfig 추가 # 참고 https://developer.an..
2020.08.03