react-native-webview[Domain: undefined Error code -1"]

김래영·2020년 10월 25일
1

React-Native

목록 보기
6/10

Android 버전이 tagetSdkVersion 28 이상일 경우 부터는 WebView에 일반적인 텍스트로 http:// URL 접근이 막혔다.

해결방법


AndroidManifest.xml 에서 application 의 usesClearTextTraffic 속성을 true로 바꿔주어 텍스트 URL 을 무조건 허용하게했다.

<manifest ...>
    ...
    <application
        ...
        android:usesCleartextTraffic="true">
profile
개발 노트

0개의 댓글