Advertisement
konfou

Android DevSpecs

Sep 13th, 2015
344
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.00 KB | None | 0 0
  1.     echo "============================"
  2.     echo "Android Device Specificatios"
  3.     echo "============================"
  4.     adb wait-\for-device
  5.     echo "> Manufacturer"
  6.     adb shell getprop ro.product.manufacturer
  7.     echo "> Name"
  8.     adb shell getprop ro.product.name
  9.     echo "> Model"
  10.     adb shell getprop ro.product.model
  11.     echo "> Android version"
  12.     adb shell getprop ro.build.version.release
  13.     echo "> Platform"
  14.     adb shell getprop ro.board.platform
  15.     echo "> CPU"
  16.     adb shell getprop ro.product.cpu.abi
  17.     echo "> CPU.abi2"
  18.     adb shell getprop ro.product.cpu.abi2
  19.     echo "> Description"
  20.     adb shell getprop ro.build.description
  21.     echo "> Fingerprint"
  22.     adb shell getprop ro.build.fingerprint
  23.     echo "> GSM Flexversion"
  24.     adb shell getprop ro.gsm.flexversion
  25.     echo "> Locale language"
  26.     adb shell getprop ro.product.locale.language
  27.     echo "> Locale region"
  28.     adb shell getprop ro.product.locale.region
  29.     echo "> Wifi channels"
  30.     adb shell getprop ro.wifi.channels
  31.     echo "> Board platform"
  32.     adb shell getprop ro.board.platform
  33.     echo "> Product board"
  34.     adb shell getprop ro.product.board
  35.     echo "> Display ID"
  36.     adb shell getprop ro.build.display.id
  37.     echo "> Serial number"
  38.     adb get-serialno
  39.     echo "> GSM IMEI"
  40.     adb shell getprop gsm.baseband.imei
  41.     echo "> Version incremental"
  42.     adb shell getprop ro.build.version.incremental
  43.     echo "> Version SDK"
  44.     adb shell getprop ro.build.version.sdk
  45.     echo "> Version codename"
  46.     adb shell getprop ro.build.version.codename
  47.     echo "> Version release"
  48.     adb shell getprop ro.build.version.release
  49.     echo "> Build date"
  50.     adb shell getprop ro.build.date
  51.     echo "> Build type"
  52.     adb shell getprop ro.build.type
  53.     echo "> Build user"
  54.     adb shell getprop ro.build.user
  55.     echo "----------------------------"
  56.     echo "That is all folks."
  57.  
  58. by https://gist.github.com/konfou/c0f23b26f2d6c038d91c
  59. based on https://www.youtube.com/watch?v=4YIkE3B7gM4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement