- 将 BUILD_MODE_NAME 从 debug 更改为 release - 将 DEBUG 常量从 true 更改为 false - 为 basic 模块更新构建配置 - 为 sdk_ywx 模块更新构建配置 - 在 Index.ets 中添加 myHospitalListNew API 配置导入 - 在 API 调用列表中添加 myHospitalListNew 相关接口
17 行
523 B
Plaintext
17 行
523 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 = '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;
|
|
} |