From 01185bf60c4e63db6a6f682b87763ee32824b589 Mon Sep 17 00:00:00 2001 From: lloyd <353627866@qq.com> Date: Sun, 21 Sep 2025 11:11:21 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E5=AE=9E=E7=8E=B0=E4=B8=80=E9=94=AE?= =?UTF-8?q?=E7=94=9F=E6=88=90=E6=B2=99=E7=AE=B1=E6=96=87=E4=BB=B6=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=E3=80=91=E7=9B=AE=E5=BD=95=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.en.md | 7 +++++-- README.md | 11 +++++++---- entry/obfuscation-rules.txt | 5 +++++ hvigor/hvigor-config.json5 | 2 +- oh-package.json5 | 2 +- 5 files changed, 19 insertions(+), 8 deletions(-) diff --git a/README.en.md b/README.en.md index 16be3c6..b299299 100644 --- a/README.en.md +++ b/README.en.md @@ -26,12 +26,15 @@ The RDB store file function facilitates file transfer between the device and the ## Project Directory ``` ├──entry/src/main/ets +│ ├──common +│ │ └──Logger.ets // Logger │ ├──entryability │ │ └──EntryAbility.ets // Entry ability │ ├──entrybackupability │ │ └──EntryBackupAbility.ets // Data backup and restoration -│ └──pages -│ ├──Index.ets // Home page +│ ├──pages +│ │ └──Index.ets // Home page +│ └──entrybackupability │ └──File.ets // File list page └──entry/src/main/resources // App resource directory ``` diff --git a/README.md b/README.md index ab6a464..c38c5d5 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# **实现一键生成沙箱文件功能** +# 实现一键生成沙箱文件功能 ## 介绍 @@ -25,13 +25,16 @@ ## 工程目录 ``` -├──entry/src/main/ets +├──entry/src/main/ets +│ ├──common +│ │ └──Logger.ets // 日志类 │ ├──entryability │ │ └──EntryAbility.ets // 程序入口类 │ ├──entrybackupability │ │ └──EntryBackupAbility.ets // 数据备份恢复类 -│ └──pages -│ ├──Index.ets // 主页页面 +│ ├──pages +│ │ └──Index.ets // 主页页面 +│ └──entrybackupability │ └──File.ets // 文件列表页面 └──entry/src/main/resources // 应用资源目录 ``` diff --git a/entry/obfuscation-rules.txt b/entry/obfuscation-rules.txt index e69de29..1097a47 100644 --- a/entry/obfuscation-rules.txt +++ b/entry/obfuscation-rules.txt @@ -0,0 +1,5 @@ + +-enable-property-obfuscation +-enable-toplevel-obfuscation +-enable-filename-obfuscation +-enable-export-obfuscation \ No newline at end of file diff --git a/hvigor/hvigor-config.json5 b/hvigor/hvigor-config.json5 index 06b2783..5bebc97 100644 --- a/hvigor/hvigor-config.json5 +++ b/hvigor/hvigor-config.json5 @@ -1,5 +1,5 @@ { - "modelVersion": "5.0.0", + "modelVersion": "5.0.5", "dependencies": { }, "execution": { diff --git a/oh-package.json5 b/oh-package.json5 index 8bf916d..2d9c74f 100644 --- a/oh-package.json5 +++ b/oh-package.json5 @@ -1,5 +1,5 @@ { - "modelVersion": "5.0.0", + "modelVersion": "5.0.5", "description": "Please describe the basic information.", "dependencies": { }, -- Gitee