如何获取App版本号,版本名,屏幕分辨率等信息?

如何获取App版本号,版本名,屏幕分辨率等信息

阅读 569
1 个回答
  1. 通过@ohos.bundle.bundleManager模块中的bundleManager查询bundleInfo。在bundleInfo中包含App版本号、版本名信息。

    import bundleManager from '@ohos.bundle.bundleManager';   
     import { BusinessError } from '@ohos.base';   
     // ...   
     bundleManager.getBundleInfoForSelf(bundleManager.BundleFlag.GET_BUNDLE_INFO_WITH_APPLICATION).then((bundleInfo)=\>{   
    let versionName = bundleInfo.versionName;//应用版本名   
    let versionNo = bundleInfo.versionCode;//应用版本号   
     }).catch((error: BusinessError )=\>{   
    console.error("get bundleInfo failed,error is "+error)   
     })
    
  2. 在模块@ohos.app.ability.Configuration中获取screenDensity,其中包含屏幕分辨率信息。

    import common from '@ohos.app.ability.common';   
     // ...   
     let context = getContext(this) as common.UIAbilityContext;   
     let screenDensity = context.config.screenDensity;
    
    
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题