鸿蒙开发基础库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 line
522B

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