Differences between revisions 3 and 4
Revision 3 as of 2015-05-30 10:04:26
Size: 904
Editor: PieterSmit
Comment:
Revision 4 as of 2015-05-30 11:15:32
Size: 1005
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 19: Line 19:
   1. npm install -g ionic
      * sudo chown -R pes.pes /usr/local/lib/node_modules/ionic
Line 22: Line 24:


Cordova a.k.a. PhoneGap

  • Cordova is a mobile develepment framework, builing a mobile app with web technologies (js + html + css) and then deploying to multiple platforms.

Notes on starting a Cordova project

Ubuntu/Linux, environment

  1. npm - javascript environment node.js  sudo apt-get install npm 

  2. cordova  npm install -g cordova 

    • Doing this as normal user gave some errors, created dir and gave user right.  sudo mkdir /usr/local/lib/node_modules 

  3. java environment
    • sudo apt-get install nodejs-legacy
      sudo apt-get install default-jre
      sudo apt-get install  default-jdk
  4. android build environment. download from google android-sdk_r24.0.2-linux.tgz (134M)
    • BIT VAGUE, needed to launch and download android versions 19/22 ???
  5. npm install -g ionic
    • sudo chown -R pes.pes /usr/local/lib/node_modules/ionic

New Project

...

Cordova (last edited 2015-05-30 14:19:41 by PieterSmit)