From 337106f9e2c5ddf7c8cecddf5afcae394757fe43 Mon Sep 17 00:00:00 2001 From: Annie_wang Date: Thu, 6 Apr 2023 15:00:28 +0800 Subject: [PATCH] update docs Signed-off-by: Annie_wang --- en/device-dev/subsystems/subsys-app-privilege-config-guide.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/en/device-dev/subsystems/subsys-app-privilege-config-guide.md b/en/device-dev/subsystems/subsys-app-privilege-config-guide.md index 6f4e44001e..32b52a3fe5 100644 --- a/en/device-dev/subsystems/subsys-app-privilege-config-guide.md +++ b/en/device-dev/subsystems/subsys-app-privilege-config-guide.md @@ -63,6 +63,7 @@ In addition to general application privileges, device vendors can define device- | allowAbilityExcludeFromMissions | bool | false| Allows an ability to be hidden in the mission stack.| | allowAppUsePrivilegeExtension | bool | false|Allows an application to use ServiceExtension and DataExtension abilities.| | allowFormVisibleNotify | bool | false| Allows a widget to be visible on the home screen.| +| allowAppShareLibrary | bool | false | Allows an application to provide the [inter-application HSP capability](../../application-dev/quick-start/cross-app-hsp.md) for other applications. ### How to Configure @@ -90,6 +91,7 @@ Configure the required privileges in the [configuration file](https://gitee.com/ "allowAbilityExcludeFromMissions": true, // Allow the ability to be hidden in the mission stack. "allowAppUsePrivilegeExtension": true, // Allow the application to use ServiceExtension and DataExtension abilities. "allowFormVisibleNotify": true // Allow a widget to be visible on the home screen. + "allowAppShareLibrary": true // Allow the application to provide the inter-application HSP capability. }, } ``` -- GitLab