MCPcopy Create free account
hub / github.com/BombusMod/BombusMod / getPlatformName

Method getPlatformName

src/main/java/Client/Config.java:736–746  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

734 }
735//#endif
736 public static String getPlatformName() {
737 String device = System.getProperty("device.model");
738 String firmware = System.getProperty("device.software.version");
739
740//#if android
741 if (device != null) {
742 String platformName = compute() + "/Android " + firmware;
743 return platformName;
744 }
745 return "";
746 }
747
748 public static String getOs() {
749 return getPlatformName();

Callers 1

getOsMethod · 0.95

Calls 2

computeMethod · 0.95
getPropertyMethod · 0.80

Tested by

no test coverage detected