1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/android/getprop.md

33 lines
632 B
Markdown
Raw Normal View History

2021-04-04 00:08:41 +02:00
# getprop
> Show information about Android system properties.
> More information: <https://manned.org/getprop>.
2021-04-04 00:08:41 +02:00
- Display information about Android system properties:
2021-04-04 00:08:41 +02:00
`getprop`
- Display information about a specific property:
2023-02-21 14:56:20 +10:00
`getprop {{property}}`
2021-04-04 00:08:41 +02:00
- Display the SDK API level:
`getprop {{ro.build.version.sdk}}`
- Display the Android version:
`getprop {{ro.build.version.release}}`
- Display the Android device model:
`getprop {{ro.vendor.product.model}}`
- Display the OEM unlock status:
`getprop {{ro.oem_unlock_supported}}`
- Display the MAC address of the Android's Wi-Fi card:
2021-04-04 00:08:41 +02:00
`getprop {{ro.boot.wifimacaddr}}`