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>
'Android' 카테고리의 다른 글
[error] ERR_CLEARTEXT_NOT_PERMIT (6) | 2021.07.11 |
---|---|
[error] cannot infer type arguments for ArrayAdapter<> (0) | 2021.06.23 |
[ERROR] You need to use a Theme.AppCompat theme (or descendant) with this activity. (0) | 2021.06.11 |
Android FileList 파일 탐색기 (0) | 2021.04.04 |
Android Dialog (3) | 2021.04.02 |
댓글