HarmonyOSBaseLibs/BuildProfile.ets
徐勤民 6cc43ce608 refactor(miniapp): 重构二维码处理和授权签名功能
- 创建新的 AutoInfo 和 AutoStopData 接口和类文件
- 添加 OAuth 授权相关模型和常量定义
- 实现二维码解析 V2 版本工具类
- 添加二维码图像处理和内容解析功能
- 重构 MiniAppManager 中的二维码处理逻辑
- 更新错误处理类型为 YWXError
- 修改 SDK 依赖版本管理
- 移除旧的锁定文件配置
- 优化授权登录和签名确认页面的导入路径
2026-01-08 18:00:57 +08:00

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