HarmonyOSBaseLibs/BuildProfile.ets
徐勤民 b7d0288643 refactor(app): 调整认证逻辑并更新构建配置
- 修正 CossCertManager 中的证书获取和绑定逻辑
- 更新 BuildProfile 配置,切换到调试模式
- 新增 publish.sh 脚本用于获取应用包哈希值
- 调整 SDK BuildProfile 配置,启用调试模式
- 修改 build-profile.json5,更新签名配置
2025-04-27 10:54:11 +08:00

17 行
519 B
Plaintext

/**
* Use these variables when you tailor your ArkTS code. They must be of the const type.
*/
export const HAR_VERSION = '1.0.9';
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;
}