반응형
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">
반응형
'.etc' 카테고리의 다른 글
[GCP] 한국 Cloud Onboard Online 1 : GCP 소개 (0) | 2020.09.09 |
---|---|
[Git] .gitignore 추가해도 변경 및 동작 안될 때, 추적 풀기 (0) | 2020.08.25 |
php, cron 이용하여 Slack Webhook 세팅 [Slack 스케쥴링,배치] (0) | 2020.04.21 |
[git] 이용중인 Git Repository 사용자 이름, 이메일, 원격저장소 변경 (0) | 2020.04.21 |
[Google Cloud Gaming & Media Academy] GCP 소개 (0) | 2020.03.03 |