본문 바로가기
Android

[Tip] 안드로이드 9(pie) http 프로토콜 접속 에러

by 캡틴노랑이 2021. 6. 14.
반응형

android 7 이하 버전에서는 정상 작동 하던 http 프로토콜이 버전 8이상부터 작동이 안될 때.

 

AndroidManifest.xml에 다음 코드를 추가한다.

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/Theme.Memorization"
        android:networkSecurityConfig="@xml/network_security_config"
        >
        ..............................
    </application>

 

그리고...res 폴더 밑에 xml 폴더를 만들고,  network_security_config.xml을 만들고 다음 코드를 추가한다.

app\src\main\res\xml\network_security_config.xml

 

 

해결 방법은 몇가지 있으나...

이 것이 제일 보편적임. 허용할 서버만 밑으로 추가만 하면됨. 

 

 

이렇게 하는 방법도 있음. 

딱 저 빨간 색만 AndroidManifest.xml에 추가 하면 됨. 

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/Theme.Memorization"
    android:usesCleartextTraffic="true"
    >
    ..............................
</application> 

 

반응형

댓글