How to get Device Information in Android

android

Solution

You can use the Build Class to get the device information.

For example:

String myDeviceModel = android.os.Build.MODEL;

Problem

Possible Duplicate: How to detect system information like os or device type I am new to android application development. I developed one small application,and install that application .apk file in my device,it is working good. But my requirement is When i install .apk file first time in my device,then i have to retrieve the total device information and store that information in my database. please help me go forward

Original source

Related problems