1

我希望从设备接收自定义 ROM/Android 操作系统名称,例如假设设备是:

OPPO -> ColorOS

一加-> OxygenOS

华为-> HarmonyOS

我也使用了以下方法,但没有成功。

Build.DISPLAY->一加 A6003_22_201116

Build.VERSION.BASE_OS-> "" // 返回空字符串

System.getProperty("os.name") -> Linux

System.getProperty("os.version")-> 4.9.179-perf+

System.getProperty("ro.modversion") -> null // 返回 null

4

1 回答 1

0

您可以通过以下方法查看并获取HarmonyOS:

public static boolean isHarmony(Context context) {
    try {
        int id = Resources.getSystem().getIdentifier("config_os_brand", "string", "android");
        return context.getString(id).equals("harmony");
    } catch (Exception e) {
        return false;
    }
}
于 2021-07-29T21:29:07.510 回答