Ver Fonte

refactor(authorize): 优化授权时长选项并注释错误提示

- 初始化 times 数组,提供 12 小时、24 小时、3 天和 7 天的授权时长选项
- 注释掉错误提示的显示,减少用户困扰
徐勤民 há 5 dias atrás
pai
commit
55e3dc9bc4
1 ficheiros alterados com 2 adições e 2 exclusões
  1. 2 2
      BuildProfile.ets

+ 2 - 2
BuildProfile.ets

@@ -2,8 +2,8 @@
  * Use these variables when you tailor your ArkTS code. They must be of the const type.
  */
 export const HAR_VERSION = '1.0.10';
-export const BUILD_MODE_NAME = 'debug';
-export const DEBUG = true;
+export const BUILD_MODE_NAME = 'release';
+export const DEBUG = false;
 export const TARGET_NAME = 'default';
 
 /**