Differences between revisions 2 and 3
Revision 2 as of 2015-05-30 09:52:33
Size: 870
Editor: PieterSmit
Comment:
Revision 3 as of 2015-05-30 10:04:26
Size: 904
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 7: Line 7:
 * Ubuntu/Linux, environment === Ubuntu/Linux, environment ===
Line 20: Line 20:
=== New Project ===
   1.

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 ???

New Project

...

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