본문 바로가기
.etc

[Android] http url image 보이지 않을 때

by 오늘의개발부 2020. 6. 29.
반응형

Android 특정 버전부터 기본적으로 https 외에는 연결하지 않는다고 한다.

 

Android의 AndroidManifest.xml파일에 아래 라인을 추가하여 간단히 해결할 수 있다.

 

android:usesCleartextTraffic="true"

 

 

    <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/AppTheme"
        android:usesCleartextTraffic="true">

 

 

 

https://stackoverflow.com/questions/51902629/how-to-allow-all-network-connection-types-http-and-https-in-android-9-pie

반응형