From 2543fb5606cd34289e101fdfd6c4687f79afb282 Mon Sep 17 00:00:00 2001 From: xuqm Date: Thu, 10 Apr 2025 12:48:48 +0800 Subject: [PATCH] =?UTF-8?q?refactor(app):=20=E6=9B=B4=E6=96=B0=E5=BA=94?= =?UTF-8?q?=E7=94=A8=E5=85=A5=E5=8F=A3=E9=80=BB=E8=BE=91=E5=B9=B6=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E5=86=85=E9=83=A8=E6=B5=8B=E8=AF=95=E6=94=AF=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 修改 MiniAppManager 中的 app.link处理逻辑,用于互联网医院/云诊室场景 - 更新 BuildProfile 配置,切换到 release 模式并设置 DEBUG 为 false - 新增 InternalTesting目录,包含测试页面和签名工具说明 - 更新 README.md,添加内部测试签名工具使用说明 --- BuildProfile.ets | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BuildProfile.ets b/BuildProfile.ets index a0db51a..dd80d80 100644 --- a/BuildProfile.ets +++ b/BuildProfile.ets @@ -2,8 +2,8 @@ * Use these variables when you tailor your ArkTS code. They must be of the const type. */ export const HAR_VERSION = '1.0.9'; -export const BUILD_MODE_NAME = 'debug'; -export const DEBUG = true; +export const BUILD_MODE_NAME = 'release'; +export const DEBUG = false; export const TARGET_NAME = 'default'; /**