Changes between Version 3 and Version 4 of DeveloperGuidelines/EdenMobile


Ignore:
Timestamp:
08/26/16 09:19:57 (8 years ago)
Author:
Dominic König
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/EdenMobile

    v3 v4  
    44'''!EdenMobile''' is a mobile application for Sahana Eden, built on the [https://cordova.apache.org Apache Cordova] platform (also known as Adobe !PhoneGap).
    55
     6== Development Environment ==
     7
     81. Cordova runs on '''NodeJS'''. If your OS distribution does not provide a NodeJS bundle, you can get from here:
     9
     10  - [https://nodejs.org/en/download https://nodejs.org/en/download]
     11
     122. Use the NodeJS package manager ''npm'' to install Cordova:
     13
     14{{{
     15  npm install -g cordova
     16}}}
     17
     18  See also: [https://cordova.apache.org/#getstarted https://cordova.apache.org/#getstarted]
     19
     203. If you want to build and test !EdenMobile, you also need an SDK for the target platform, e.g.:
     21
     22  - [https://developer.android.com/studio/index.html#downloads Android SDK]
     23
     244. You can fork/clone !EdenMobile from here:
     25
     26  - [https://github.com/nursix/eden_mobile https://github.com/nursix/eden_mobile] (development trunk, if you want to contribute to the !EdenMobile project)
     27  - [https://github.com/sahana/eden_mobile https://github.com/sahana/eden_mobile] (stable, if you want to create custom builds)
     28
    629''tbc''
     30
     31----
     32
     33DeveloperGuidelines