判断MIUI版本及版本号

识别是否是MIUI

根据MIUI开发者文档中的提示

请使用android.os.Build对象,查询MANUFACTURER和MODEL的值,MANUFACTURER值为[Xiaomi]即为小米设备,MODEL为设备名称,比如[Redmi 4X]表示红米4X。
其实读的属性是
[ro.product.manufacturer]: [Xiaomi]
[ro.product.model]: [Redmi 4X]

识别版本号

然后在adb shell 之后getprop可以得到一个属性『ro.miui.version.code_time』,这个属性是一个毫秒值,对应的是MIUI开发版的版本号,比如我的MIUI9开发版7.8.10对应的:
[ro.miui.ui.version.name]: [V9]
表示版本号为 MIUI9
[ro.miui.version.code_time]: [1502294400]
1502294400毫秒值转换为时间:2017/8/10,表示版本为7.8.10

实现代码

 public static String checkMIUI() {
        String versionCode = "";
        String manufacturer = Build.MANUFACTURER;
        String model = Build.MODEL;
        LogUtils.i("Build.MANUFACTURER = " + manufacturer + " ,Build.MODEL = " + Build.MODEL);
        if (!TextUtils.isEmpty(manufacturer) && manufacturer.equals("Xiaomi")) {
            versionCode = getSystemProperty("ro.miui.version.code_time");
        }
        return versionCode;
    }

    public static String getSystemProperty(String propName) {
        String line;
        BufferedReader input = null;
        try {
            Process p = Runtime.getRuntime().exec("getprop " + propName);
            input = new BufferedReader(new InputStreamReader(p.getInputStream()), 1024);
            line = input.readLine();
            input.close();
        } catch (IOException ex) {
            LogUtils.i("Unable to read sysprop " + propName, ex);
            return null;
        } finally {
            if (input != null) {
                try {
                    input.close();
                } catch (IOException e) {
                    LogUtils.i("Exception while closing InputStream", e);
                }
            }
        }
        return line;
    }

你可能感兴趣的:(判断MIUI版本及版本号)