HarmonyOSBaseLibs/BuildProfile.ets
徐勤民 84a1bd6fc7 feat(account): 用户登录和登出时刷新应用列表
- 在用户登录和登出时,添加了刷新应用列表的操作
- 优化了应用列表的展示逻辑,使用唯一键确保每个应用的标识唯一
- 调整了过期订单提醒的存储键,增加了用户ID以区分不同用户
2024-11-28 10:48:50 +08:00

17 行
519 B
Plaintext

/**
* Use these variables when you tailor your ArkTS code. They must be of the const type.
*/
export const HAR_VERSION = '1.0.5';
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;
}