반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- xcode
- ReactNative
- PYTHON
- build
- 센토스
- VirtualBox
- 오블완
- node
- 맥
- webpack
- androidstudio
- TensorFlow
- centos
- Chrome
- MachineLearning
- vsCode
- 티스토리챌린지
- Android
- 개발
- IOS
- 리눅스
- qunit
- react
- unittest
- linux
- 네트워크
- localserver
- MAC
- jest
Archives
- Today
- Total
로메오의 블로그
[Ionic] net::ERR_CLEARTEXT_NOT_PERMITTED 오류 해결 - Android 본문
반응형
OPTIONS http://domain.kr/portal/nn/service.do
net::ERR_CLEARTEXT_NOT_PERMITTED
IONIC Android 최신버전에서 네트워크 통신할때 위의 오류가 발생합니다.
config.xml
<?xml version='1.0' encoding='utf-8'?>
<widget id="kr.amc.aris.ctc" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
....
<platform name="android">
<edit-config file="app/src/main/AndroidManifest.xml" mode="merge" target="/manifest/application" xmlns:android="http://schemas.android.com/apk/res/android">
<application android:networkSecurityConfig="@xml/network_security_config" />
<application android:usesCleartextTraffic="true" />
</edit-config>
....
</platform>
<platform name="ios">
....
</platform>
....
</widget>
resources/android/xml/network_security_config.xml
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<domain-config cleartextTrafficPermitted="true">
<domain includeSubdomains="true">localhost</domain>
<domain>www.youtube.com</domain>
<domain>api.domain.com</domain>
</domain-config>
</network-security-config>
허용할 도메인을 모두 추가합니다.
Android Build
$ ionic cordova build android
반응형
'Frontend > angular' 카테고리의 다른 글
[Ionic] Ionic 주요 명령어 정리 (0) | 2020.01.28 |
---|---|
[Ionic] alert, toast, confirm 사용 (2) | 2020.01.17 |
[IONIC] iOS Status Bar font 색상 변경하기 (0) | 2020.01.16 |
[Ionic] QR Code 생성하기 / QR Code Scan (1) | 2020.01.16 |
[IONIC] Modal Controller - 파라미터 전달 (0) | 2020.01.16 |
Comments