From a1dbcc962a9619f0f6b1bd105d8f058aa5924c1b Mon Sep 17 00:00:00 2001 From: shuaiyutao Date: Sat, 18 Dec 2021 06:51:08 +0000 Subject: [PATCH] =?UTF-8?q?Description:=20=E6=94=AF=E6=8C=81srcPath?= =?UTF-8?q?=E5=92=8Cremovable=E7=9A=84Schema=E6=A0=A1=E9=AA=8C=20Sig:=20Fe?= =?UTF-8?q?ature=20or=20Bugfix:=20Feature=20Binary=20Source:No?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: shuaiyutao --- configcheck/configSchema_rich.json | 26 +++++++++++++++++++++----- 1 file changed, 21 insertions(+), 5 deletions(-) mode change 100644 => 100755 configcheck/configSchema_rich.json diff --git a/configcheck/configSchema_rich.json b/configcheck/configSchema_rich.json old mode 100644 new mode 100755 index f2e8de5d..acf59b2f --- a/configcheck/configSchema_rich.json +++ b/configcheck/configSchema_rich.json @@ -34,7 +34,8 @@ "smartWindowSize", "smartWindowDeviceType", "targetBundleList", - "singleUser" + "singleUser", + "removable" ] }, "properties": { @@ -50,6 +51,10 @@ "type": "string", "maxLength": 255 }, + "removable": { + "description": "Describes the application can remove or not. This attribute takes effect only when the system application or privilege application is used", + "type": "boolean" + }, "version": { "description": "Indicates the version information of the application.Includes two sub-labels:”code” and ”name”.This label cannot be left blank.", "type": "object", @@ -1144,6 +1149,7 @@ "colorMode", "theme", "mainAbility", + "srcPath", "resizeable", "entryTheme", "distroFilter" @@ -1293,7 +1299,8 @@ }, "required": [ "name", - "type" + "type", + "srcPath" ] } }, @@ -1338,7 +1345,8 @@ "required": [ "name", "type", - "uri" + "uri", + "srcPath" ], "properties": { "formsEnabled": { @@ -1382,7 +1390,8 @@ }, "required": [ "name", - "type" + "type", + "srcPath" ], "properties": { "formsEnabled": { @@ -1425,7 +1434,8 @@ }, "required": [ "name", - "type" + "type", + "srcPath" ], "properties": { "formsEnabled": { @@ -2727,6 +2737,11 @@ "description": "This tag identifies the hap topic. The tag value can be the index of a user-defined theme resource or the index of a system theme resource.", "type": "string" }, + "srcPath": { + "description": "This tag indicates the JS component code path corresponding to the module. The tag value is a character string (a maximum of 127 bytes)", + "type": "string", + "maxLength": 127 + }, "resizeable": { "description": "Indicates whether the application supports the multi-window feature.", "type": "boolean" @@ -3155,6 +3170,7 @@ "colorMode", "theme", "mainAbility", + "srcPath", "resizeable", "entryTheme" ] -- Gitee