HarmonyOSBaseLibs/BuildProfile.ets
徐勤民 c8b9f3ea16 fix(env): 修复多域名环境配置和用户ID处理逻辑
- 修正 GlobalValue 中环境类型判断逻辑,添加 _envUrl 长度检查
- 根据多域名配置状态动态设置用户ID数组值
- 在 EnvManager 中添加 isMulti 条件判断来控制环境重置逻辑
- 为 HomeView 添加刷新频率限制防止重复请求
- 将未读消息提醒请求移动到正确位置确保执行
- 更新构建配置将调试模式设置为开启状态
2026-01-06 11:18:24 +08:00

17 行
520 B
Plaintext

/**
* Use these variables when you tailor your ArkTS code. They must be of the const type.
*/
export const HAR_VERSION = '1.0.11';
export const BUILD_MODE_NAME = 'debug';
export const DEBUG = true;
export const TARGET_NAME = 'default';
/**
* BuildProfile Class is used only for compatibility purposes.
*/
export default class BuildProfile {
static readonly HAR_VERSION = HAR_VERSION;
static readonly BUILD_MODE_NAME = BUILD_MODE_NAME;
static readonly DEBUG = DEBUG;
static readonly TARGET_NAME = TARGET_NAME;
}