通过@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) }) 在模块@ohos.app.ability.Configuration中获取screenDensity,其中包含屏幕分辨率信息。import common from '@ohos.app.ability.common'; // ... let context = getContext(this) as common.UIAbilityContext; let screenDensity = context.config.screenDensity;
通过@ohos.bundle.bundleManager模块中的bundleManager查询bundleInfo。在bundleInfo中包含App版本号、版本名信息。
在模块@ohos.app.ability.Configuration中获取screenDensity,其中包含屏幕分辨率信息。