Nuke Olaf - Log Store
java.net.UnknownServiceException: CLEARTEXT communication to test.metaler.kr not permitted by network security policy 본문
Android
java.net.UnknownServiceException: CLEARTEXT communication to test.metaler.kr not permitted by network security policy
NukeOlaf 2020. 3. 29. 17:55사용중인 API 주소가 https 가 아닌 http 를 사용해서 생기는 오류라고 한다.
해결 방법 : 매니페스트 application 태그에 usesCleartextTraffic="true" 를 추가한다.
<application android:usesCleartextTraffic="true">
</application>
참고 사이트 : https://gun0912.tistory.com/80
'Android' 카테고리의 다른 글
[Android] 안드로이드 - 현재 시간 가져오기, 시간 계산하기 (0) | 2020.03.31 |
---|---|
[Android] 안드로이드 - 기기 단말 정보 가져오기 (0) | 2020.03.31 |
[Android] 카카오 로그인 API 사용하기 (feat. Kotlin) (0) | 2020.03.26 |
[Android] 당겨서 새로고침 - swipe refresh layout (0) | 2020.03.26 |
[Android] 안드로이드 리사이클러뷰 무한 스크롤 - RecyclerView OnScrollListener (1) | 2020.03.25 |
Comments