From 62e51742a53fc6189c0d88759b5e996623f6106e Mon Sep 17 00:00:00 2001 From: zhao-zhiqiang-zzq Date: Mon, 19 Jul 2021 15:25:30 +0800 Subject: [PATCH] Added desktop settings entry Signed-off-by: zhao-zhiqiang-zzq --- BUILD.gn | 7 +++++++ OAT.xml | 1 + README.md | 1 + README_zh.md | 1 + ohos.build | 1 + 5 files changed, 11 insertions(+) diff --git a/BUILD.gn b/BUILD.gn index 24b1795e..5f093d15 100755 --- a/BUILD.gn +++ b/BUILD.gn @@ -27,6 +27,13 @@ ohos_prebuilt_etc("launcher_recents_hap") { subsystem_name = "applications" } +ohos_prebuilt_etc("launcher_settings_hap") { + source = "Launcher_Settings.hap" + module_install_dir = "app" + part_name = "prebuilt_hap" + subsystem_name = "applications" +} + ohos_prebuilt_etc("settings_hap") { source = "Settings.hap" diff --git a/OAT.xml b/OAT.xml index a9f99178..a4cc5b58 100755 --- a/OAT.xml +++ b/OAT.xml @@ -57,6 +57,7 @@ Note:If the text contains special characters, please escape them according to th + diff --git a/README.md b/README.md index ede3f5d6..a01e50c3 100755 --- a/README.md +++ b/README.md @@ -28,6 +28,7 @@ applications/standard/hap ├── Gallery_Demo.hap # Sample Gallery app ├── Launcher.hap # Launcher app ├── Launcher_Recents.hap # Recent tasks app of Launcher +├── Launcher_Settings.hap # Settings app of Launcher ├── Settings.hap # Settings app ├── Shopping_Demo.hap # Sample shopping app ├── SystemUI-NavigationBar.hap # Navigation bar app of SystemUI diff --git a/README_zh.md b/README_zh.md index 5ac95fd1..684c03cd 100755 --- a/README_zh.md +++ b/README_zh.md @@ -28,6 +28,7 @@ applications/standard/hap ├── Gallery_Demo.hap # 图库示例应用 ├── Launcher.hap # 桌面entry应用 ├── Launcher_Recents.hap # 桌面中最近任务应用 +├── Launcher_Settings.hap # 桌面中的桌面设置应用 ├── Settings.hap # 设置应用 ├── Shopping_Demo.hap # 购物示例应用 ├── SystemUI-NavigationBar.hap # SystemUI 导航栏应用 diff --git a/ohos.build b/ohos.build index d166bd46..011ab0c4 100755 --- a/ohos.build +++ b/ohos.build @@ -5,6 +5,7 @@ "module_list": [ "//applications/standard/hap:launcher_hap", "//applications/standard/hap:launcher_recents_hap", + "//applications/standard/hap:launcher_settings_hap", "//applications/standard/hap:settings_hap", "//applications/standard/hap:navigationBar_hap", "//applications/standard/hap:statusBar_hap", -- Gitee