HarmonyOSBaseLibs/BuildProfile.ets
徐勤民 858d57ae38 build(basic): 更新基础库版本至 1.0.6- 在 BuildProfile.ets 中将 HAR_VERSION 从 1.0.5 修改为 1.0.6
- 更新 app 和 sdk_ywx 目录下的 oh-package-lock.json5 文件
-调整 sdk_ywx/oh-package.json5 中的依赖项版本
2024-12-12 11:07:59 +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.6';
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;
}