From 78fd9bb907a9bb66b9a0197220f27347f3f39432 Mon Sep 17 00:00:00 2001 From: zhrenqiang Date: Thu, 17 Apr 2025 15:20:54 +0800 Subject: [PATCH] fix: module.json add extractNativeLibs Signed-off-by: zhrenqiang --- modulecheck/module.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/modulecheck/module.json b/modulecheck/module.json index 02dd7390..8b525121 100644 --- a/modulecheck/module.json +++ b/modulecheck/module.json @@ -43,6 +43,7 @@ "dependencies", "libIsolation", "compressNativeLibs", + "extractNativeLibs", "installationFree", "atomicService", "targetModuleName", @@ -137,6 +138,7 @@ "dependencies", "libIsolation", "compressNativeLibs", + "extractNativeLibs", "atomicService", "generateBuildHash", "isolationMode", @@ -192,6 +194,7 @@ "dependencies", "libIsolation", "compressNativeLibs", + "extractNativeLibs", "atomicService", "generateBuildHash", "isolationMode", @@ -1494,6 +1497,11 @@ "type": "boolean", "default": false }, + "extractNativeLibs": { + "description": "Specifies whether to extract native libraries (so) of the .hap file during installation.", + "type": "boolean", + "default": true + }, "atomicService": { "description": "Indicates the module config in atomic service.", "type": "object", -- Gitee