com.increase.api.core.Properties.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of increase-java-core Show documentation
Show all versions of increase-java-core Show documentation
An SDK library for increase
The newest version!
@file:JvmName("Properties")
package com.increase.api.core
import java.util.Properties
fun getOsArch(): String {
val osArch = System.getProperty("os.arch")
return when (osArch) {
null -> "unknown"
"i386",
"x32",
"x86" -> "x32"
"amd64",
"x86_64" -> "x64"
"arm" -> "arm"
"aarch64" -> "arm64"
else -> "other:${osArch}"
}
}
fun getOsName(): String {
val osName = System.getProperty("os.name")
val vendorUrl = System.getProperty("java.vendor.url")
return when {
osName == null -> "Unknown"
osName.startsWith("Linux") && vendorUrl == "http://www.android.com/" -> "Android"
osName.startsWith("Linux") -> "Linux"
osName.startsWith("Mac OS") -> "MacOS"
osName.startsWith("Windows") -> "Windows"
else -> "Other:${osName}"
}
}
fun getOsVersion(): String {
return System.getProperty("os.version", "unknown")
}
fun getPackageVersion(): String {
return Properties::class.java.`package`.implementationVersion ?: "unknown"
}
fun getJavaVersion(): String {
return System.getProperty("java.version", "unknown")
}