build(profile): 更新构建配置并切换到发布模式

- 在 BuildProfile.ets 文件中将 BUILD_MODE_NAME 从 'debug' 改为 'release'
- 将 DEBUG 设置从 true 改为 false
- 更新 packageHash 值
- 修改签名配置
- 添加测试包上传地址
这个提交包含在:
徐勤民 2025-04-25 16:41:48 +08:00
父节点 7753f8ae52
当前提交 8e593e0453

查看文件

@ -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';
/**