diff --git a/configcheck/configSchema_rich.json b/configcheck/configSchema_rich.json index 37dee95e272149f3c1efa031162595ff1b815279..c62cfc81cf61fd97f8552bd05c31a97c5e54d536 100755 --- a/configcheck/configSchema_rich.json +++ b/configcheck/configSchema_rich.json @@ -36,7 +36,8 @@ "targetBundleList", "singleton", "removable", - "userDataClearable" + "userDataClearable", + "asanEnabled" ] }, "properties": { @@ -165,6 +166,11 @@ "userDataClearable": { "description": "Specifies whether to allow clear data. only for system application.@deprecated", "type": "boolean" + }, + "asanEnabled": { + "description": "Indicates whether to support asan. Release version is not configurable", + "type": "boolean", + "default": false } } }, diff --git a/modulecheck/app.json b/modulecheck/app.json index fe9ed1e28c03102490701013b39bcd944ebf950b..fb301a34a522bbab8a6904724db153116fdd0c0c 100644 --- a/modulecheck/app.json +++ b/modulecheck/app.json @@ -44,6 +44,7 @@ "userDataClearable", "accessible", "multiProjects", + "asanEnabled", "default", "tablet", "tv", @@ -174,6 +175,11 @@ "type": "boolean", "default": false }, + "asanEnabled": { + "description": "Indicates whether to support asan. Release version is not configurable", + "type": "boolean", + "default": false + }, "default": { "description": "The configuration in the default tag is applicable to all devices. If the configuration is different for other device types, you need to configure the configuration under the configuration tag of the device type.", "type": "object",