HarmonyOS 版本更新及人脸识别

1、获取应用市场历史版本;在应用内检查更新,有新版本跳转用用市场下载信息版本。这个需求可以怎么实现?

2、手机人脸未开启,跳转设置打开,这个代码有示例吗?

HarmonyOS
3天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
put_get

1、版本更新可参考文档:

https://developer.huawei.com/consumer/cn/doc/harmonyos-guides-V5/store-update-V5

2、人脸识别demo如下:

import { common, Want } from '@kit.AbilityKit';

@Entry
@Component
struct Index {
  private context = getContext(this) as common.UIAbilityContext

  build() {
    Column() {
      Button('跳转到设置')
        .onClick(() => {
          let want: Want = {
            bundleName: 'com.huawei.hmos.settings',
            abilityName: 'com.huawei.hmos.settings.MainAbility',
            uri: 'biometrics_and_password_settings',
            parameters: {
              pushParams: "com.example.jump2setting"
            }
          };
          this.context.startAbility(want)
        })
    }
    .width("100%")
    .height("100%")
    .alignItems(HorizontalAlign.Center)
    .justifyContent(FlexAlign.Center)
  }
}
分享
微博
QQ
微信
回复
3天前
相关问题
HarmonyOS 人脸识别回调问题
33浏览 • 1回复 待解决
如何使用原生能力人脸识别api?
253浏览 • 1回复 待解决
HarmonyOS如何在应用内更新版本
176浏览 • 1回复 待解决
HarmonyOS 人脸检测
26浏览 • 1回复 待解决
HarmonyOS @ohos/mmkv 怎么更新到最新版本
702浏览 • 1回复 待解决
mate30 5G鸿蒙110版本更新升级150版本
7530浏览 • 1回复 待解决
什么时候优化更新到鸿蒙222版本
5215浏览 • 1回复 待解决
HarmonyOS FiDO人脸认证失败
31浏览 • 1回复 待解决