HarmonyOSBaseLibs/BuildProfile.ets
徐勤民 c8289cee7e build(version): 更新版本号并调整依赖
- 将 @szyx/sdk_base 版本从1.0.9 升级到 1.0.10
- 将 @szyx/sdk_ywx 版本从1.0.5 升级到 1.0.6- 更新 HAR_VERSION 常量
- 修改版本号和版本名称
- 更新 CHANGELOG.md 文件
2025-05-31 14:14:30 +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.10';
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;
}