数字医信签名sdk鸿蒙版本
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

17 rindas
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.6';
  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. }