From d46ef66190bb67153c69cdad48c51dc11df89317 Mon Sep 17 00:00:00 2001 From: DaiHN Date: Thu, 3 Apr 2025 16:05:16 +0800 Subject: [PATCH 1/2] Add permission of "system/framework" issue: https://gitee.com/openharmony/startup_appspawn/issues/IBYKFX?from=project-issue Signed-off-by: DaiHN Change-Id: I265f95ea7d2e667676017f054d98272bb6738df6 --- appdata-sandbox.json | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/appdata-sandbox.json b/appdata-sandbox.json index 4aaf2623..15444c62 100755 --- a/appdata-sandbox.json +++ b/appdata-sandbox.json @@ -73,6 +73,11 @@ "sandbox-path" : "/system/etc", "sandbox-flags" : [ "bind", "rec" ], "check-action-status": "false" + }, { + "src-path" : "/system/framework", + "sandbox-path" : "/system/framework", + "sandbox-flags" : [ "bind", "rec" ], + "check-action-status": "false" }, { "src-path" : "/system/etc/hosts", "sandbox-path" : "/data/service/el1/network/hosts_user/hosts", @@ -483,6 +488,11 @@ "sandbox-path" : "/system/etc", "sandbox-flags" : [ "bind", "rec" ], "check-action-status": "false" + }, { + "src-path" : "/system/framework", + "sandbox-path" : "/system/framework", + "sandbox-flags" : [ "bind", "rec" ], + "check-action-status": "false" }, { "src-path" : "/system/etc/hosts", "sandbox-path" : "/data/service/el1/network/hosts_user/hosts", @@ -761,7 +771,7 @@ "src-path": "/data/service/el1/public/themes//a/system", "sandbox-path": "/data/themes/a/system", "sandbox-flags": [ "bind", "rec" ] - }, + }, { "src-path": "/data/service/el1/public/themes//b/system", "sandbox-path": "/data/themes/b/system", -- Gitee From 917687cb416924cb2805d016eb05ae6440f86e9d Mon Sep 17 00:00:00 2001 From: h30044958 Date: Mon, 28 Apr 2025 14:27:15 +0800 Subject: [PATCH 2/2] ArkTS1.2 add framework Integration AOT ArkTS1.2 add framework Integration AOT Issue:https://gitee.com/openharmony/arkcompiler_ets_runtime/issues/IBZ283 Signed-off-by: h30044958 Change-Id: I81c1a567a72d922e5cc1b1bb49dea298b9e8d34b --- appdata-sandbox-app.json | 3 +++ appdata-sandbox.json | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/appdata-sandbox-app.json b/appdata-sandbox-app.json index 8a104e79..b58887e9 100755 --- a/appdata-sandbox-app.json +++ b/appdata-sandbox-app.json @@ -168,6 +168,9 @@ }, { "src-path" : "/mnt/data//media_fuse", "sandbox-path" : "/data/storage/el2/media" + }, { + "src-path" : "/data/service/el1/public/framework_ark_cache", + "sandbox-path" : "/data/storage/framework_ark_cache" }], "symbol-links" : [{ "target-name" : "/mnt/nweb/tmp", diff --git a/appdata-sandbox.json b/appdata-sandbox.json index 15444c62..f6d473c0 100755 --- a/appdata-sandbox.json +++ b/appdata-sandbox.json @@ -253,6 +253,11 @@ "sandbox-path" : "/vendor/etc/passthrough", "sandbox-flags" : [ "bind", "rec" ], "check-action-status": "false" + }, { + "src-path" : "/data/service/el1/public/framework_ark_cache", + "sandbox-path" : "/data/storage/framework_ark_cache", + "sandbox-flags" : [ "bind", "rec" ], + "check-action-status": "false" } ], "symbol-links" : [{ -- Gitee