Go to file
chenlang10 807ea43887 适配ohpm
Signed-off-by: chenlang10 <18577333310@163.com>
2023-09-27 11:20:29 +08:00
AppScope 解决应用列表设置名称和桌面的设置字体不一致 2023-03-29 09:39:06 +08:00
common ohpm 整改 2023-09-21 21:12:34 +08:00
figures remove Sync postfix for adapting settingsdata api 2022-02-07 15:42:19 +08:00
hvigor 适配ohpm 2023-09-27 11:20:29 +08:00
napi query完未释放 2023-09-15 09:59:02 +08:00
product 适配ohpm 2023-09-27 11:20:29 +08:00
signature 更改p7b签名 2023-09-21 15:31:22 +08:00
.gitignore ohpm 整改 2023-09-21 20:57:57 +08:00
build-profile.json5 update build-profile.json5. 2023-09-23 01:17:19 +00:00
bundle.json napi告警处理 2023-07-10 16:28:17 +08:00
hvigorfile.js 蓝牙、NFC优化,fullSDK适配 2022-08-16 15:07:44 +08:00
hvigorw 适配ohpm 2023-09-27 11:20:29 +08:00
hvigorw.bat 适配ohpm 2023-09-27 11:20:29 +08:00
LICENSE update OpenHarmony 2.0 Canary 2021-06-02 00:03:12 +08:00
OAT.xml 更新OAT文件 2023-09-22 09:29:51 +08:00
oh-package.json5 适配ohpm 2023-09-27 11:20:29 +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