본문 바로가기
프로그래밍/Android

[Android] 내 컴퓨터 IP로 http연결시 주의할점

by Youngs_ 2022. 7. 28.

network_security_config.xml 파일에 내컴퓨터의 ip를 넣어야한다.

cmd창에서 ipconfig명령어를 입력한 후 ipv4값을 넣으면된다.

<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
    <base-config cleartextTrafficPermitted="false" />
    <domain-config cleartextTrafficPermitted="true">
        <domain includeSubdomains="true">10.0.2.2</domain>
        <domain includeSubdomains="true">내 컴퓨터의 IP</domain>
    </domain-config>

</network-security-config>

댓글