-
Notifications
You must be signed in to change notification settings - Fork 10
Labels
enhancementNew feature or requestNew feature or request
Description
adb shell getprop ro.product.model : Allows you to get the exact model name of the device (e.g., Pixel 8 Pro).
adb shell getprop ro.product.brand : Gives the brand of the device (e.g., google).
adb shell getprop ro.build.version.release : Displays the Android version (e.g., 14).
adb shell getprop ro.build.version.sdk : Indicates the Android API version number (e.g., 34).
adb shell getprop ro.serialno : Displays the device's serial number.
adb shell getprop : Lists all available system properties, which is very detailed.
To get technical details about the device's hardware and current status, you can use dumpsys or read system files.
adb shell dumpsys battery : Gives complete information about the battery status (charge level, health, temperature, etc.).
adb shell dumpsys cpuinfo : Shows CPU usage by each process.
adb shell dumpsys meminfo : Provides details on the device's random-access memory (RAM) usage.
adb shell dumpsys package <nom.du.paquet> : As mentioned previously, this command gives you a very detailed report on an app, including the list of all its permissions, activities, services, and more.
adb shell cat /proc/cpuinfo : Displays detailed information about the CPU, such as type, number of cores, and frequency
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request