1/** 2 * Use these variables when you tailor your ArkTS code. They must be of the const type. 3 */ 4export const HAR_VERSION = '1.0.0'; 5export const BUILD_MODE_NAME = 'debug'; 6export const DEBUG = true; 7export const TARGET_NAME = 'default'; 8 9/** 10 * BuildProfile Class is used only for compatibility purposes. 11 */ 12export default class BuildProfile { 13 public static readonly HAR_VERSION:string = HAR_VERSION; 14 public static readonly BUILD_MODE_NAME:string = BUILD_MODE_NAME; 15 public static readonly DEBUG:boolean = DEBUG; 16 public static readonly TARGET_NAME:string = TARGET_NAME; 17}