Go to file
2023-04-10 03:09:03 +00:00
AppScope 解决应用列表设置名称和桌面的设置字体不一致 2023-03-29 09:39:06 +08:00
common any整改及密码列表字体未居中 2023-04-06 14:21:02 +08:00
figures remove Sync postfix for adapting settingsdata api 2022-02-07 15:42:19 +08:00
napi update napi/settings/napi_settings_init.cpp. 2023-02-27 03:25:04 +00:00
product !411 OH设备蓝牙界面,点击对应的蓝牙耳机连接,当OH设备蓝牙耳机显示栏显示的状态正在连接时,OH设备关闭不了蓝牙,蓝牙界面界面点击开关按钮,界面无响应,有时还会出现界面闪退 2023-04-10 03:09:03 +00: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 蓝区master:compatibleSdkVersion更改为10 2023-02-16 19:10:46 +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
OAT.xml edit OAT 2022-04-25 22:08:47 +08:00
package-lock.json 蓝区master:流水线完整性校验失败 2023-01-03 16:06:24 +08:00
package.json 蓝区master分支:settings适配ArkUI新框架 2022-12-01 17:20:56 +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