refactor(app): 更新应用入口逻辑并添加内部测试支持

- 修改 MiniAppManager 中的 app.link处理逻辑,用于互联网医院/云诊室场景
- 更新 BuildProfile 配置,切换到 release 模式并设置 DEBUG 为 false
- 新增 InternalTesting目录,包含测试页面和签名工具说明
- 更新 README.md,添加内部测试签名工具使用说明
这个提交包含在:
xuqm 2025-04-10 12:48:48 +08:00
父节点 b50991c464
当前提交 2543fb5606

查看文件

@ -2,8 +2,8 @@
* Use these variables when you tailor your ArkTS code. They must be of the const type. * 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 HAR_VERSION = '1.0.9';
export const BUILD_MODE_NAME = 'debug'; export const BUILD_MODE_NAME = 'release';
export const DEBUG = true; export const DEBUG = false;
export const TARGET_NAME = 'default'; export const TARGET_NAME = 'default';
/** /**