README.md
1# Settings<a name="EN-US_TOPIC_0000001103554544"></a>
2
3- [Introduction](#section11660541593)
4 - [Architecture](#section48896451454)
5
6- [Directory Structure](#section161941989596)
7- [Repositories Involved](#section1371113476307)
8
9## Introduction<a name="section11660541593"></a>
10The 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.
11
12### Architecture<a name="section48896451454"></a>
13
14![](figures/en-us_image_0000001153225717.png)
15
16## Directory Structure<a name="section161941989596"></a>
17
18```
19/applications/standard/settings
20├── entry # main entry module
21│ └── src
22│ ├── main
23│ ├── ets # ets module
24│ ├── default
25│ ├── common # common code and utils
26│ ├── model # data management and logic control
27│ ├── pages # code of view components
28│ ├── res # some image resources
29│ ├── resources # other resources
30│ ├── app.ets # main process
31│ ├── resources # resources configs
32│ ├── base # default language, image resources, font size and colors
33│ ├── en_AS.element # English resources
34│ ├── rawfile # local configs
35│ ├── zh_CN.element # Chinese resources
36│ └── config.json # global configs
37├── signature # Certificate files
38├── LICENSE # Copyright license file
39```
40
41## Repositories Involved<a name="section1371113476307"></a>
42
43System apps
44
45**applications\_settings**
46
47
README_zh.md
1# Settings<a name="ZH-CN_TOPIC_0000001103421572"></a>
2
3- [简介](#section11660541593)
4 - [架构图](#section48896451454)
5
6- [目录](#section161941989596)
7- [相关仓](#section1371113476307)
8
9## 简介<a name="section11660541593"></a>
10
11设置应用是 OpenHarmony 系统中预置的系统应用,为用户提供设置系统属性的交互界面,例如设置系统时间,屏幕亮度等系统属性。
12
13### 架构图<a name="section48896451454"></a>
14
15![](figures/zh-cn_image_0000001153225717.png)
16
17## 目录<a name="section161941989596"></a>
18
19```
20/applications/standard/settings
21├── entry # 主entry模块目录
22│ └── src
23│ ├── main
24│ ├── ets # ets模块目录
25│ ├── default
26│ ├── common # 公共工具存放目录
27│ ├── model # 数据管理和决策逻辑存放目录
28│ ├── pages # 组件页面存放目录
29│ ├── res # 部分图片资源
30│ ├── resources # 其它共用资源
31│ ├── app.ets # 全局ets逻辑和应用生命周期管理文件
32│ ├── resources # 资源配置文件存放目录
33│ ├── base # 默认语言场景,图片资源,字体大小,颜色资源内容存放目录
34│ ├── en_AS.element # 英文语言场景资源内容存放目录
35│ ├── rawfile # 本地配置文件存放目录
36│ ├── zh_CN.element # 中文语言场景资源内容存放目录
37│ └── config.json # 全局配置文件
38├── signature # 证书文件目录
39├── LICENSE # 许可文件
40```
41
42## 相关仓<a name="section1371113476307"></a>
43
44系统应用
45
46**applications\_settings**
47
48