HarmonyOS 版本更新及人脸识别?

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

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

阅读 559
1 个回答

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)
  }
}
logo
HarmonyOS
子站问答
访问
宣传栏