How to build applications » History » Version 1
Olivier Bitsch, 11/19/2021 12:08 PM
1 | 1 | Olivier Bitsch | # How to build applications |
---|---|---|---|
2 | |||
3 | This is a comprehensive guide to build mobile application on IOS and Android. |
||
4 | |||
5 | ## Requirements |
||
6 | |||
7 | * npm >= 14 |
||
8 | |||
9 | ## Update version |
||
10 | |||
11 | We asume you already cloned the project. Almost all command steps are embedded into Makefile. You must update "config.xml" (for builder) and "config.yaml" in root of the project. Ensure to create version and release. |
||
12 | |||
13 | * 1.5.7 > 1.6.8 (version 1.6, release 8). |
||
14 | |||
15 | > Building for android automatically updates `android/app/build.gradle` file. |
||
16 | |||
17 | Commit and push the both files |
||
18 | |||
19 | ## Manually Build Android |
||
20 | |||
21 | Once version updated, you can manually build with the both commands. |
||
22 | |||
23 | ~~~ |
||
24 | make clean |
||
25 | make android-prod |
||
26 | ~~~ |
||
27 | |||
28 | ## Manually Sign Android |
||
29 | |||
30 | ~~~ |
||
31 | make sign-android |
||
32 | ~~~ |
||
33 | |||
34 | ## Manually Build IOS |