HarmonyOSBaseLibs/BuildProfile.ets
徐勤民 8060517761 refactor(app): 重构应用并更新 SDK
- 更新 BJCASDK 版本至 1.0.2
- 移除 PinDialog 组件的直接引用- 优化证书管理和签名相关 API 的调用方式
-调整构建配置,设置为 release 模式
- 更新版本记录和相关文档
2024-11-08 18:04:00 +08:00

17 行
522 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 = '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;
}