-
public class CpuInformation extends DeviceFingerprint
-
-
Constructor Summary
Constructors Constructor Description CpuInformation(Context context)This class is responsible for fetching the cpu information
-
Method Summary
Modifier and Type Method Description final StringgetCpuArchitecture()Get the Cpu Architecture 64 bit or 32 final intgetCpuNumOfCores()Get the number of core in cpu final StringgetBogoMIPS()Get the BogoMIPS unit of the cpu final StringgetDevice()DeviceEg. final StringgetCPUGovernor(int core)final StringgetCpuAbi()http://developer.android.com/ndk/guides/abis.htmlNote that we search for abi:s in preferred order (the ordering of theBuild.SUPPORTED_ABIS list) to avoid e.g. final intgetCpuUsageInPercentage()final StringgetSOC()final StringgetProcessor()-
Methods inherited from class ai.sensfrx.df.DeviceFingerprint
checkBluetoothStatus, getAMPMFormat, getAllVolumeLevelsInfo, getAppsWithMockPermission, getLockTypeString, getManifestPermissions, getNightModeStatus, getScreenBrightness, isDNDModeEnabled, isDeveloperModeEnabled, isDualSim, isMockLocationEnabled, isPowerSavingModeEnabled, isSimCardLocked -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Constructor Detail
-
CpuInformation
CpuInformation(Context context)
This class is responsible for fetching the cpu information
-
-
Method Detail
-
getCpuArchitecture
final String getCpuArchitecture()
Get the Cpu Architecture 64 bit or 32
-
getCpuNumOfCores
final int getCpuNumOfCores()
Get the number of core in cpu
-
getBogoMIPS
final String getBogoMIPS()
Get the BogoMIPS unit of the cpu
-
getCPUGovernor
final String getCPUGovernor(int core)
- Parameters:
core- of processor
-
getCpuAbi
final String getCpuAbi()
http://developer.android.com/ndk/guides/abis.htmlNote that we search for abi:s in preferred order (the ordering of theBuild.SUPPORTED_ABIS list) to avoid e.g. installing arm on an x86 system where armemulation is available.
-
getCpuUsageInPercentage
final int getCpuUsageInPercentage()
-
getProcessor
final String getProcessor()
-
-
-
-