Build mode
There're 3 kinds of build mode:
-
Full Fully build the project forcely. Below actions will be performed:
- Clean generated files
- Generate source for screens
- Convert resources (images/fonts/lotties)
- Build the whole project
- Run the project
This is applicable for the first time building, or when some top level header files are changed, e.g.
lv_conf.h
. -
Incremental Incrementally build the project. Below actions will be performed:
- Clean generated files
- Generate source for screens
- Convert resources (images/fonts/lotties)
- Build the auto-generated source files
- Run the project
This is applicable for most of the time, unless some top level header files are changed, e.g.
lv_conf.h
. -
Mini Minimumly build the project. Below actions will be performed:
- Generate source for screens
- Build the auto-generated source files
- Run the project
This is applicable for building when no resource changed, which means that:
- You didn't change any image referneces of the components
- You didn't change any text/font size/font family of the components
- You didn't change any lottie references of the components
warning
"Mini" mode is not applicable for the first time building.