Is there an API for programmatically extracting information regarding the current Android device? For example, properties like "model", "OS" etc.

This would be an analogue of iOS's UIDevice class and instance properties.

link|improve this question

74% accept rate
feedback

1 Answer

up vote 6 down vote accepted

You can use the class android.os.Build to get most of the device information.

For example:

String myDeviceModel = android.os.Build.MODEL;
link|improve this answer
Can I use this to, for instance, extract the version of the operating system (such as "Android 2.2")? – SK9 Aug 16 '11 at 7:18
For that you can use: developer.android.com/reference/android/os/Build.VERSION.html – roundhill Aug 16 '11 at 7:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.