# PhoneGap

# PhoneGap

by jihoon kim

HTML

<style>
.MJXp-math.MJXp-display {
  display:inline !important;
}
</style>
<div id="contents">
## 원본 : [Do it! 쉽게배우는 웹앱&하이브리드 앱](https://www.inflearn.com/course/쉽게배우는-웹앱하이브리드-앱/)

### 폰갭(PhoneGap) - 코르도바(cordova)
  - Hybrid App ( 하이브리드앱 )
  https://phonegap.com
  https://play.google.com/store/apps/details?id=com.adobe.phonegap.app
  니토비 - 폰갭 - 어도비인수 - Apache Open Source

### Install
1. PhoneGap Desktop 애플리케이션 설치 :         http://docs.phonegap.com/getting-started/1-install-phonegap/desktop/
   - PhoneGap 애플리케이션을 생성하기위한 드래그 앤 드롭 인터페이스를 제공합니다.
   - [PhoneGap CLI](http://docs.phonegap.com/getting-started/1-install-phonegap/cli/) : 커맨드라인 방식의 대안으로 사용할 수 있음.

<br/>

2. Install PhoneGap Developer ( 폰갭 디벨로퍼 앱 )
    - 로컬에서 하이브리드앱을 IOS,안드로이드, 윈도폰의 모바일 기기의 멀티 플랫폼에서 폰갭 앱을 직접 테스트 지원 개발 환경.
    - [Google Play](https://play.google.com/store/apps/details?id=com.adobe.phonegap.app)
    - [Windows Phone Store](https://www.microsoft.com/en-us/p/phonegap-developer/9wzdncrdfsj0)
    - [~iTunes~ Currently not available but you can still build it yourself!](https://blog.phonegap.com/update-on-the-phonegap-developer-app-ios-99e07e3309dd)

    2.1. PhoneGap Developer 앱 실행.
    2.2. Once installed, move on to the next step where you will create your first PhoneGap app using the tool you selected in step 1.

    http://docs.phonegap.com/en/edge/guide_platforms_index.md.html#Platform%20Guides

##### ETC. PhoneGap CLI.
  0. node 설치 (https://nodejs.org/ko/download/)
  1. 폰갭 CLI를 설치하기위함)
  ```sh
    $ npm install -g phonegap@latest
    $ npm install -g cordova    <<-- 안해도 되는듯.
    $ phonegap
    Usage: phonegap [options] [commands]
    Description:
    PhoneGap command-line tool.
    Commands:
       help [command]       output usage information
       create <path>        create a phonegap project
        ...
  ```

#### Create a PhoneGap Project
```sh
C:\phoneGap>md project
C:\phoneGap>cd project
C:\phoneGap\project>phonegap create hello_world
```

#### Start...