Searched refs:classType (Results 1 – 1 of 1) sorted by relevance
565 Class<?> classType = Class.forName("android.os.SystemProperties"); in getPlatform() local566 Method getMethod = classType.getDeclaredMethod("get", new Class<?>[]{String.class}); in getPlatform()567 platform = (String) getMethod.invoke(classType, new Object[]{"ro.board.platform"}); in getPlatform()