Notice
Recent Posts
Recent Comments
Link
«   2024/10   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

coding etude

[flutter] webview error (net::ERR_CLEARTEXT_NOT_PERMITTED) 본문

Flutter(Dart)

[flutter] webview error (net::ERR_CLEARTEXT_NOT_PERMITTED)

코코리니 2024. 5. 27. 16:33

안드로이드 권한 설정을 해주면 간단하게 해결되는 오류이다.

 

android > app > src > main > androidManifest.xml 파일을 열고

 

마지막 줄에 있는 android:usesCleartextTraffic="true" 를 넣어주고 저장 후 실행하면 해결.

 

끝.