Skip to content

Instantly share code, notes, and snippets.

@arjunmenon
Last active January 27, 2018 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arjunmenon/3b596c927702a0de6645ea86f2ac19b7 to your computer and use it in GitHub Desktop.
Save arjunmenon/3b596c927702a0de6645ea86f2ac19b7 to your computer and use it in GitHub Desktop.
Phonegap/Tabris Js mobile app development notes
#UPDATE NOTES WHILE PROGRESS
some points to remember while developing mobile apps with Phonegap and Tabris JS
Init
1. For Tabris JS
versioning should follow the [node-semver](https://github.com/npm/node-semver) format - X.X.X
2. For Phonegap
always create with `phonegap create myApp --id "org.myapp.sample" --name "appSample"`
Adding cordova plugins to config.xml
1. For Phonegap
<plugin spec="<git url>" /> # if loading by github
2. For Tabris Js
<plugin name="<cordova plugin name from cordova.apache.org as is>" spec="<git url>" /> # if to gather by github
<plugin name="<git url>" /> # if loading by github
Simulate
1. For Phonegap
Always do specific, phonegap run android --device
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment