Android 华为手机获取EMUI版本

获取EMUI的版本,要捕捉异常:


           Class classType = Class.forName("android.os.SystemProperties");
            Method getMethod = classType.getDeclaredMethod("get", new Class[]{String.class});
            String buildVersion = (String) getMethod.invoke(classType, new Object[]{"ro.build.version.emui"});


你可能感兴趣的:(Android,设备)