반응형
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
- vsCode
- qunit
- TensorFlow
- 오블완
- IOS
- Android
- 센토스
- 티스토리챌린지
- jest
- MAC
- 맥
- 개발
- linux
- 네트워크
- PYTHON
- Chrome
- 리눅스
- MachineLearning
- androidstudio
- unittest
- ReactNative
- centos
- react
- node
- build
- localserver
- webpack
- xcode
- VirtualBox
Archives
- Today
- Total
로메오의 블로그
[ionic] Android 생성 / 빌드 / 실행하기 본문
반응형
Andriod Platform 생성하기
$ ionic cordova platform add android
Android Studio에서 프로젝트 열기
Android Studio에서 firstProject/plaforms/android 프로젝트를 열고 Run app 합니다.
net::ERR_CONNECTION_REFUSED 해결하기
android 에뮬레이터에서 이런 오류가 발생하면
config.xml에
<allow-navigation href="http://localhost*" />
추가합니다.
<?xml version='1.0' encoding='utf-8'?>
<widget id="io.ionic.starter" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>MyApp</name>
<description>An awesome Ionic/Cordova app.</description>
<author email="hi@ionicframework.com" href="http://ionicframework.com/">Ionic Framework Team</author>
<content src="index.html" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<allow-navigation href="http://localhost*" /> <!-- 추가합니다.-->
<preference name="ScrollEnabled" value="false" />
<preference name="BackupWebStorage" value="none" />
....
$ ionic cordova emulate android
그리고 명령어로 빌드를 한번 하고 android studio에서 다시 빌드하면 정상 실행됩니다.
반응형
'Frontend > angular' 카테고리의 다른 글
[Angular] Rest API Service 구현하기 (2) | 2020.01.12 |
---|---|
[Angular] angular-cli / material 설치 / page module 추가 (0) | 2020.01.10 |
[Ionic] iOS 생성 / 빌드 / 실행하기 (0) | 2020.01.10 |
Angular & IONIC 목록 (0) | 2020.01.10 |
[Ionic] 시작하기 - 환경설정 (0) | 2020.01.10 |
Comments