HarmonyOSBaseLibs/BuildProfile.ets
徐勤民 55e3dc9bc4 refactor(authorize): 优化授权时长选项并注释错误提示
- 初始化 times 数组,提供 12 小时、24 小时、3 天和 7 天的授权时长选项
- 注释掉错误提示的显示,减少用户困扰
2025-09-01 16:01:23 +08:00

17 行
523 B
Plaintext

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