플러터(Flutter)
플러터 net::ERR_CLEARTEXT_NOT_PERMITTED
xemaker
2023. 10. 7. 08:48
플러터로 웹뷰를 만들고 있는데 net::ERR_CLEARTEXT_NOT_PERMITTED 에러가 발생하였다.
뭐지.. 하고 구글링을 해보니
android:usesCleartextTraffic="true"
추가하라고 나왔다.
어디냐면
AndroidManifest.xml
근데 구글링해도 경로가 안 맞았다.
전체 경로를 친절히 알려주마
flutter > android > app > src > main > AndroidManifest.xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:label="first_flutter"
android:name="${applicationName}"
android:usesCleartextTraffic="true"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"
android:exported="true"
저렇게 추가하였다. 그랬더니 잘 되었다.