HarmonyOSBaseLibs/BuildProfile.ets
徐勤民 e684edb25a refactor(app): 更新应用配置和依赖管理
- 修改GlobalValue.ets中的环境状态注释顺序
- 修复ApiUtils.ets中的环境状态判断逻辑
- 调整多个API配置的showLog参数设置
- 更新应用版本号从1.1.1到1.1.2
- 将SDK依赖从远程包改为本地文件引用
- 增加HTTP请求超时时间从20秒到60秒
- 修复用户ID获取逻辑以支持绑定环境切换
- 调整构建配置为调试模式
- 添加并发控制到证书下载功能
- 激活基本模块的构建配置项
2026-01-21 09:54:48 +08:00

17 行
520 B
Plaintext

/**
* Use these variables when you tailor your ArkTS code. They must be of the const type.
*/
export const HAR_VERSION = '1.0.11';
export const BUILD_MODE_NAME = 'debug';
export const DEBUG = true;
export const TARGET_NAME = 'default';
/**
* BuildProfile Class is used only for compatibility purposes.
*/
export default class BuildProfile {
static readonly HAR_VERSION = HAR_VERSION;
static readonly BUILD_MODE_NAME = BUILD_MODE_NAME;
static readonly DEBUG = DEBUG;
static readonly TARGET_NAME = TARGET_NAME;
}