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,
you need install android sdk tools + ide: https://developer.android.com/sdk/index.html
enable debug mode on phone: how find , turn on usb debugging mode on nexus 4
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
Post a Comment