Created
February 26, 2014 10:07
-
-
Save inoccu/9226999 to your computer and use it in GitHub Desktop.
Cordova(PhoneGap)でのアプリ開発のはじめ方 ref: http://qiita.com/inoccu/items/2e07b550c3ab1e24b7b0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nodebrew install v0.11.11 | |
nodebrew use v0.11.11 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm -g install cordova |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cordova create haruka_cordova jp.co.artisanedge.cordova.haruka Haruka | |
cd haruka_cordova |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cordova platform add ios | |
cordova platform add android |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cordova plugin add org.apache.cordova.device-motion | |
cordova plugin add org.apache.cordova.camera | |
cordova plugin add org.apache.cordova.media-capture | |
cordova plugin add org.apache.cordova.device-orientation | |
cordova plugin add org.apache.cordova.network-information | |
cordova plugin add org.apache.cordova.contacts | |
cordova plugin add org.apache.cordova.device | |
cordova plugin add org.apache.cordova.battery-status | |
cordova plugin add org.apache.cordova.file-transfer | |
cordova plugin add org.apache.cordova.geolocation | |
cordova plugin add org.apache.cordova.globalization | |
cordova plugin add org.apache.cordova.inappbrowser | |
cordova plugin add org.apache.cordova.media | |
cordova plugin add org.apache.cordova.dialogs | |
cordova plugin add org.apache.cordova.vibration | |
cordova plugin add org.apache.cordova.splashscreen |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cordova run android | |
cordova run ios |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cordova emulate android | |
cordova emulate ios |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cordova serve |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment