refactor(app): 重构应用并更新 SDK

- 更新 BJCASDK 版本至 1.0.2
- 移除 PinDialog 组件的直接引用- 优化证书管理和签名相关 API 的调用方式
-调整构建配置,设置为 release 模式
- 更新版本记录和相关文档
这个提交包含在:
徐勤民 2024-11-08 18:04:00 +08:00
父节点 1e25ca295d
当前提交 8060517761
共有 2 个文件被更改,包括 3 次插入3 次删除

查看文件

@ -2,8 +2,8 @@
* Use these variables when you tailor your ArkTS code. They must be of the const type. * Use these variables when you tailor your ArkTS code. They must be of the const type.
*/ */
export const HAR_VERSION = '1.0.5'; export const HAR_VERSION = '1.0.5';
export const BUILD_MODE_NAME = 'debug'; export const BUILD_MODE_NAME = 'release';
export const DEBUG = true; export const DEBUG = false;
export const TARGET_NAME = 'default'; export const TARGET_NAME = 'default';
/** /**

查看文件

@ -39,7 +39,7 @@ export struct SafeView {
*/ */
@Prop showBadgeRight: boolean; @Prop showBadgeRight: boolean;
// 设置返回按钮事件,如果hideBack为true,该事件无效 // 设置返回按钮事件,如果hideBack为true,该事件无效
@Prop onBackEvent?: () => void = undefined onBackEvent?: () => void = undefined
// 设置返回按钮事件 // 设置返回按钮事件
@Prop onClickLeft?: TitleBarBtn @Prop onClickLeft?: TitleBarBtn
@Prop onClickRight?: TitleBarBtn @Prop onClickRight?: TitleBarBtn