build:切换到 debug模式

- 在 BuildProfile.ets 文件中将 BUILD_MODE_NAME从 'release' 改为 'debug'
- 将 DEBUG 变量的值从 false 改为 true
- 这些更改适用于 basic 和 sdk_ywx 目录下的 BuildProfile.ets 文件
这个提交包含在:
徐勤民 2025-05-20 22:27:51 +08:00
父节点 ef294d896f
当前提交 00ebdc1567

查看文件

@ -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 = 'release'; export const BUILD_MODE_NAME = 'debug';
export const DEBUG = false; export const DEBUG = true;
export const TARGET_NAME = 'default'; export const TARGET_NAME = 'default';
/** /**