System
ADB Debugging
Package Manager
Logcat
Wireless
File Manager
ScreenShot
Network
logcat
This command is used to get properties of device such as Sim Operator, IEMI, Android version and more.
adb shell getprop gsm.sim.operator.alpha
Gets information on the SIM operator
adb shell getprop gsm.sim.operator.alpha
adb shell getprop ro.ril.oem.imei
Gets the IMEI number of the device
adb shell getprop ro.ril.oem.imei
adb shell getprop -T
Shows the types of properties instead of the values.
adb shell getprop -T
adb shell getprop ro.build.version.release
Gets the Android version of the device.
adb shell getprop ro.build.version.release
adb shell getprop ro.serialno
Get ADB serial number
adb shell getprop ro.serialno
adb shell getprop ro.boot.wifimacaddr
Get the WiFi Mac Address
adb shell getprop ro.boot.wifimacaddr
adb shell getprop ro.product.manufacturer
Get Android device manufacturer details
adb shell getprop ro.product.manufacturer
adb shell getprop ro.vendor.product.model
Get Android device product number
adb shell getprop ro.vendor.product.model
adb shell getprop
adb shell getprop
Frequently Asked Questions
It is a command used for listing the Android device's properties.
Properties such as IMEI number, build version, Android version, WiFi Mac Address, Manufacturer details and more can be listed using this command.
Android system properties are being managed by special property_service database. The asb shell getprop is a getter command used to get/fetch the values in this database.