HarmonyOSBaseLibs/BuildProfile.ets

17 行
522 B
Plaintext

2024-08-30 19:03:07 +08:00
/**
* Use these variables when you tailor your ArkTS code. They must be of the const type.
*/
2024-10-11 10:31:18 +08:00
export const HAR_VERSION = '1.0.3';
2024-10-15 14:10:48 +08:00
export const BUILD_MODE_NAME = 'release';
export const DEBUG = false;
2024-08-30 19:03:07 +08:00
export const TARGET_NAME = 'default';
/**
* BuildProfile Class is used only for compatibility purposes.
*/
2024-05-07 17:41:21 +08:00
export default class BuildProfile {
2024-08-30 19:03:07 +08:00
static readonly HAR_VERSION = HAR_VERSION;
static readonly BUILD_MODE_NAME = BUILD_MODE_NAME;
static readonly DEBUG = DEBUG;
static readonly TARGET_NAME = TARGET_NAME;
2024-05-07 17:41:21 +08:00
}