()
| 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(); |
no test coverage detected