- 在 CossCertManager 中添加回调函数,客户端切换后执行特定操作- 更新 MiniAppManager 中的客户端切换逻辑,使用回调函数 - 将 BuildProfile 从 debug模式切换到 release 模式 - 更新 sdk_ywx 的 BuildProfile 从 debug 模式到 release 模式
17 行
522 B
Plaintext
17 行
522 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 = 'release';
|
|
export const DEBUG = false;
|
|
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;
|
|
} |