当前位置:   article > 正文

鸿蒙获取设备唯一标识_鸿蒙 开发 唯一标识

鸿蒙 开发 唯一标识

#鸿蒙获取设备唯一标识

package com.viaton.common.utils;

import ohos.app.Context;
import ohos.bundle.BundleInfo;
import ohos.data.distributed.common.KvManagerConfig;
import ohos.data.distributed.common.KvManagerFactory;
import ohos.system.DeviceInfo;

public class DeviceUtils {

public static Context appContext;

/**
 * 获取APP版本名称
 *
 * @return
 */
public static String getVersionName() {
    BundleInfo bundleInfo = getBundleInfo();
    if (bundleInfo != null) {
        return bundleInfo.getVersionName();
    }
    return "";
}

/**
 * 获取APP版本号
 *
 * @return
 */
public static int getVersionCode() {
    BundleInfo bundleInfo = getBundleInfo();
    if (bundleInfo != null) {
        return bundleInfo.getVersionCode();
    }
    return 0;
}

/**
 * 获取设备唯一标识
 *
 * @return
 */
public static String getDeviceId() {
    return KvManagerFactory.getInstance().createKvManager(new KvManagerConfig(appContext)).getLocalDeviceInfo().getId();
}

/**
 * 获取设备型号
 *
 * @return
 */
public static String getDeviceName() {
    return KvManagerFactory.getInstance().createKvManager(new KvManagerConfig(appContext)).getLocalDeviceInfo().getName() + " " + DeviceInfo.getName();
}

private static BundleInfo getBundleInfo() {
    try {
        return appContext.getBundleManager().getBundleInfo(appContext.getBundleName(), 0x00000000);
    } catch (Exception e) {
        e.printStackTrace();
        return null;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54

}

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/276205
推荐阅读
相关标签
  

闽ICP备14008679号