플러터 에러 ERR_CLEARTEXT_NOT_PERMITTED
net::ERR_CLEARTEXT_NOT_PERMITTED
1. 안드로이드
/android/app/src/main/AndroidManifest.xml 파일
usesCleartextTraffic 을 True 로 설정, 없으면 추가
<application ... android:usesCleartextTraffic="true" ... >
2. iOS
/ios/Runner/Info.plist 파일 수정
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key><true/>
<key>NSAllowsArbitraryLoadsInWebContent</key><true/>
</dict>
댓글
댓글 쓰기