Can anyone explain me that how can i get the configuration of Android device programatically in my app.
Also how can I get the other device related information like Battery usage,CPU load,RAM usage,Memory details etc programatically.
Thanks in advance.
Can anyone explain me that how can i get the configuration of Android device
Share
This will get you started for the battery:
Android Battery in SDK
And this will get you a bunch of system properties (look at the getProperty method):
http://developer.android.com/reference/java/lang/System.html
Also these threads on memory management will provide a place to start:
Get Memory Usage in Android
How to get current memory usage in android?