gpt4 book ai didi

android - 判断设备是否正在运行 MIUI 软件

转载 作者:行者123 更新时间:2023-11-29 15:00:56 25 4
gpt4 key购买 nike

由于诸如 pre android 6.0 权限等问题,我需要知道我的应用程序是否在运行时运行在像小米这样的 MIUI 设备上

有什么办法吗?

最佳答案

我在 github 上找到了一个要点,旨在通过尝试获取“ro.miui.ui.version.name”系统属性来做到这一点。

public static boolean isMiUi() {
return !TextUtils.isEmpty(getSystemProperty("ro.miui.ui.version.name"));
}

public static String getSystemProperty(String propName) {
String line;
BufferedReader input = null;
try {
java.lang.Process p = Runtime.getRuntime().exec("getprop " + propName);
input = new BufferedReader(new InputStreamReader(p.getInputStream()), 1024);
line = input.readLine();
input.close();
} catch (IOException ex) {
return null;
} finally {
if (input != null) {
try {
input.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
return line;
}

Origin on github

关于android - 判断设备是否正在运行 MIUI 软件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45791799/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com