1. 서버에서 HTTPS 사용.
2-1. 서버에서 HTTPS사용 불가 시 manifest파일의 application태그에 android:usesCleartextTraffic="true" 속성 추가
2-2. 서버에서 HTTPS사용 불가 시 resource/xml폴더에 임의의 xml 파일 생성 후 다음과 같은 내용을 입력 후 manifest파일의 application태그에 android:networkSecurityConfig="@xml/추가한 파일명" 속성추가
<network-security-config>
<domain-config cleartextTrafficPermitted="true">
<domain includeSubdomains="true">127.0.0.1</domain>
</domain-config>
</network-security-config>
'develop > android' 카테고리의 다른 글
yanzhenjie:album 라이브러리 android 13대응 (0) | 2023.09.13 |
---|---|
JavaScriptInterface 관련 스토어 보안이슈 해결 (0) | 2019.07.10 |
SQLite 처리 방법 변경 (Room) (0) | 2018.09.13 |
웹뷰 A태그에 이미지 다운로드 링크 설정 (0) | 2018.07.12 |
Android studio에서 aar파일 수동 추가시 build.gradle 필수 추가사항 (0) | 2017.05.22 |