Getting internal system configurations RAM info in Android? -


im beginner in android development , please excuse if question not relevant or there alternate ways,i have developed application wherein get/retrieve smartphone infos :

modelnumber

ram size

resolution

kernel version

but there way find core features ram versions (indepth infos ,as use msconfig in windows o.s find system infos) ,also have tried secret codes *#*#3264#*#* no help

thanks ,please guide me

if proceed android development,

  1. you need install android sdk tools + ide: https://developer.android.com/sdk/index.html

  2. enable debug mode on phone: how find , turn on usb debugging mode on nexus 4

  3. then through console ( windows_button + r , type "cmd")

    • go android tools bin folder
    • plug phone usb
    • and run command adb.exe shell

in console available:

  • modelnumber:

    cat /system/build.prop | grep product

  • ram size:

    cat /proc/meminfo

  • resolution:

    dumpsys surfaceflinger | grep "fb |"

  • kernel version:

    cat /proc/version


Comments

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -