Go to file
zhanghaima f35263b66d Add switch account permission
Signed-off-by: zhanghaima <zhanghaima1@huawei.com>
2022-02-15 15:11:41 +08:00
common fix the bug of search textinput 2022-02-11 14:31:15 +08:00
figures remove Sync postfix for adapting settingsdata api 2022-02-07 15:42:19 +08:00
napi Fix atomic ability part name change 2022-01-19 16:09:20 +08:00
product Add switch account permission 2022-02-15 15:11:41 +08:00
signature update OpenHarmony 2.0 Canary 2021-06-02 00:03:12 +08:00
.gitattributes update OpenHarmony 2.0 Canary 2021-06-02 00:03:12 +08:00
build.gradle remove Sync postfix for adapting settingsdata api 2022-02-07 15:42:19 +08:00
gradle.properties update OpenHarmony 2.0 Canary 2021-06-02 00:03:12 +08:00
gradlew update OpenHarmony 2.0 Canary 2021-06-02 00:03:12 +08:00
gradlew.bat update OpenHarmony 2.0 Canary 2021-06-02 00:03:12 +08:00
LICENSE update OpenHarmony 2.0 Canary 2021-06-02 00:03:12 +08:00
local.properties update OpenHarmony 2.0 Canary 2021-06-02 00:03:12 +08:00
OAT.xml OAT 2021-09-29 15:49:21 +08:00
ohos.build modify settingsnapi to settings 2022-01-09 17:04:38 +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.gradle 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