HarmonyOSBaseLibs/BuildProfile.ets
徐勤民 842b2e3623 feat(share): 实现文章详情页面的分享功能
- 新增 ShareHelper 类,用于处理分享逻辑
- 在 ArticleDetailView 中集成分享功能
- 更新 Index 页面,获取应用信息时增加签名信息
- 修正 JSSdkCls 中的错误信息
- 优化 PayManager 中的日志输出
- 更新 ApiConfig,为 hotnewsArticleDetail接口添加日志记录
- 在 HomeArticleDetailModel 中添加 summary 字段
- 升级 wechat_open_sdk 依赖至 1.0.11 版本
2025-05-15 16:50:45 +08:00

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;
}