Skip to content

Display connected device infos #104

@florent37

Description

@florent37
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 request

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions