Last active
January 27, 2018 14:18
-
-
Save arjunmenon/3b596c927702a0de6645ea86f2ac19b7 to your computer and use it in GitHub Desktop.
Phonegap/Tabris Js mobile app development notes
This file contains 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
#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