HarmonyOSBaseLibs/BuildProfile.ets

17 行
519 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-09-24 17:50:53 +08:00
export const HAR_VERSION = '1.0.2';
2024-09-24 17:52:59 +08:00
export const BUILD_MODE_NAME = 'debug';
export const DEBUG = true;
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
}