Home react-native-webview(Domain undefined Error code -1)
Post
Cancel

react-native-webview(Domain undefined Error code -1)

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

해결방법


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

1
2
3
4
5
<manifest ...>
    ...
    <application
        ...
        android:usesCleartextTraffic="true">
This post is licensed under CC BY 4.0 by the author.

react-native-webview에서 외부 앱 실행 (pg)

react-native 안드로이드 이미지가 깨져 보일 때(png)