Go to file
openharmony_ci 6614fe00e8
!267 组件嵌套优化
Merge pull request !267 from weiyunxing/master
2022-09-27 06:06:26 +00:00
AppScope 切换stage 2022-06-28 14:37:51 +08:00
common 栅格化优化 2022-09-19 17:12:28 +08:00
figures remove Sync postfix for adapting settingsdata api 2022-02-07 15:42:19 +08:00
napi change utils_base:utils to c_utils:utils 2022-09-07 10:11:07 +08:00
product 弹窗优化 2022-09-26 17:08:05 +08:00
signature update code 2022-04-10 20:41:00 +08:00
.gitignore Retrofitting to accommodate new IDEs 2022-04-25 17:35:19 +08:00
build-profile.json5 切换stage 2022-06-28 14:37:51 +08:00
bundle.json add settings syscap 2022-09-02 10:24:53 +08:00
hvigorfile.js 蓝牙、NFC优化,fullSDK适配 2022-08-16 15:07:44 +08:00
LICENSE update OpenHarmony 2.0 Canary 2021-06-02 00:03:12 +08:00
local.properties update local.properties. 2022-04-26 00:50:28 +08:00
OAT.xml edit OAT 2022-04-25 22:08:47 +08:00
package-lock.json Retrofitting to accommodate new IDEs 2022-04-25 17:35:19 +08:00
package.json 蓝牙、NFC优化,fullSDK适配 2022-08-16 14:49:19 +08:00
README_zh.md 1.README,以及对应的图片 2021-11-10 15:33:36 +08:00
README.md remove Sync postfix for adapting settingsdata api 2022-02-07 15:42:19 +08:00

Settings

Introduction

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.

Architecture

Directory Structure

/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

Repositories Involved

System apps

applications_settings