数字医信签名sdk鸿蒙版本
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

BuildProfile.ets 522B

3週間前
3週間前
3週間前
4ヶ月前
3週間前
4ヶ月前
1234567891011121314151617
  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. }