Skip to content

adb shell getprop | Cheatsheet


It is not so much to describe here, get info via getprop command.

Example
adb shell getprop |egrep "model|version.sdk|manufacturer|hardware|platform|revision|serialno|product.name|brand" 2> /dev/null

Check if Knox is voided on an Android device

  • If the value is "0", it means Knox is not voided.
  • If the value is "1", it means Knox is voided.
adb shell getprop ro.boot.warranty_bit
adb shell getprop ro.product.cpu.abi

Get info if OEM Unlock is Allowed

  • 0 = Disabled
  • 1 = Enabled
adb shell getprop sys.oem_unlock_allowed 

Is System boot completed

adb shell getprop sys.boot_completed