2022-02-07 07:42:19 +00:00
# Settings<a name="EN-US_TOPIC_0000001103554544"></a>
2021-11-10 07:33:36 +00:00
2022-02-07 07:42:19 +00:00
- [Introduction ](#section11660541593 )
- [Architecture ](#section48896451454 )
2021-06-01 10:55:26 +00:00
2022-02-07 07:42:19 +00:00
- [Directory Structure ](#section161941989596 )
- [Repositories Involved ](#section1371113476307 )
2021-06-01 10:55:26 +00:00
2022-02-07 07:42:19 +00:00
## Introduction<a name="section11660541593"></a>
The Settings is a system application prebuilt in OpenHarmony. It provides a human-machine interactions entry for users to set system configs like settings system time, lightness of screen and etc.
2021-11-10 07:33:36 +00:00
2022-02-07 07:42:19 +00:00
### Architecture<a name="section48896451454"></a>
2021-09-16 02:20:55 +00:00
2022-02-07 07:42:19 +00:00
![](figures/en-us_image_0000001153225717.png)
2021-09-16 02:20:55 +00:00
2022-02-07 07:42:19 +00:00
## Directory Structure<a name="section161941989596"></a>
2021-11-10 07:33:36 +00:00
```
2022-02-07 07:42:19 +00:00
/applications/standard/settings
├── entry # main entry module
│ └── src
│ ├── main
│ ├── ets # ets module
│ ├── default
│ ├── common # common code and utils
│ ├── model # data management and logic control
│ ├── pages # code of view components
│ ├── res # some image resources
│ ├── resources # other resources
│ ├── app.ets # main process
│ ├── resources # resources configs
│ ├── base # default language, image resources, font size and colors
│ ├── en_AS.element # English resources
│ ├── rawfile # local configs
│ ├── zh_CN.element # Chinese resources
│ └── config.json # global configs
├── signature # Certificate files
├── LICENSE # Copyright license file
2021-09-16 02:20:55 +00:00
```
2022-02-07 07:42:19 +00:00
## Repositories Involved<a name="section1371113476307"></a>
2021-09-16 02:20:55 +00:00
2022-02-07 07:42:19 +00:00
System apps
2021-06-01 10:55:26 +00:00
2021-11-10 07:33:36 +00:00
**applications\_settings**
2022-02-07 07:42:19 +00:00