Developer Notes for Using PhoneGap
Phonegap:
http://docs.phonegap.com/en/2.2.0/guide_getting-started_ios_index.md.html#Getting%20Started%20with%20iOS_requirements
Ways to build moble app:
- (http://phonegap.com/install/)
- Phonegap install and run
- sudo npm install -g phonegap
- phonegap create my-app
- cd my-app
- phonegap run ios
- sudo npm install -g ios-deploy (if needed)
- sudo npm install -g ios-sim (if needed)
- ...
- (http://cordova.apache.org/docs/en/3.5.0//guide_cli_index.md.html#The%20Command-Line%20Interface)
- sudo npm install -g cordova
- cordova create hello com.example.hello HelloWorld
- cd hello
- cordova platform add ios
- cordova platforms ls
- cordova build
- cordova emulate ios
- Add status bar/plugin: cordova plugin add org.apache.cordova.statusbar
PhoneGap Tutorial
http://phonegap.com/blog/2013/11/12/lxjs-workshop/