Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Gradle
- 의존성주입
- 유튜브
- GIT
- 코틀린
- 안드로이드 스튜디오
- coroutine
- 코루틴
- RecyclerView
- 안드로이드스튜디오
- 깃헙
- 스튜디오
- WebView
- viewpager
- 안드로이드
- 레트로핏
- studio
- ADB
- 에러
- dart
- Kotlin
- MVVM
- 웹뷰
- error
- build
- 안스
- Android
- Github
- Retrofit
- image
Archives
- Today
- Total
코딩하는 일용직 노동자
CLEARTEXT communication to XXXX not permitted by network security policy 에러처리. 본문
안드로이드
CLEARTEXT communication to XXXX not permitted by network security policy 에러처리.
bacass 2020. 4. 29. 17:45# CLEARTEXT communication to XXXX not permitted by network security policy 에러처리.
안드로이드 9.0 (Pie) 버전에서는 무조건 https 를 쓰도록 강제하기 때문에 발하는 에러이다.
xml/network_security_config.xml 파일을 만들고 아래의 내용을 넣어준다.
<?xml version="1.0" encoding="utf-8"?> <network-security-config> <base-config cleartextTrafficPermitted="true" /> </network-security-config>
매니페스트 파일의 어플리케이션 단에 network_security_config.xml 파일을 지정해준다.
<application ... android:networkSecurityConfig="@xml/network_security_config" android:theme="@style/AppTheme">
'안드로이드' 카테고리의 다른 글
TextView HTML span 기능 넣기. (0) | 2020.04.29 |
---|---|
최근사용앱 화면에서 앱화면 가리기. (0) | 2020.04.29 |
IntentReceiver components are not allowed to register to receive intents (0) | 2020.04.29 |
BootstrapMethodError 해결. (0) | 2020.04.29 |
파일공유시 FileProvider 이용하기. (5) | 2020.04.29 |