OpenHarmony开源社区
直播中

刘满贵

7年用户 1460经验值
私信 关注
[问答]

请问鸿蒙开发如何获取versionName与versionCode?

鸿蒙开发 如何获取versionName与versionCode?

回帖(1)

刘艳

2022-4-26 10:28:18
在entry下的config.json中加入权限:

    "reqPermissions": [

      {

        "name": "ohos.permission.GET_BUNDLE_INFO"

      }

    ],

在java类中调用:

        try {

            BundleInfo bundleInfo = getBundleManager().getBundleInfo(getBundleName(), 0);

            String versionName = "版本名:" + bundleInfo.getVersionName();

            String versionCode = "版本号:" + bundleInfo.getVersionCode();

        } catch (RemoteException e) {

            e.printStackTrace();

        }
举报

更多回帖

发帖
×
20
完善资料,
赚取积分