Return the value of the os.arch property
()
| 195 | * Return the value of the os.arch property |
| 196 | */ |
| 197 | static public String getNativeArch() { |
| 198 | // This will return "arm" for 32-bit ARM, "aarch64" for 64-bit ARM (both on Linux) |
| 199 | return System.getProperty("os.arch"); |
| 200 | } |
| 201 | |
| 202 | |
| 203 | /* |
no outgoing calls
no test coverage detected