you can get the device details by using android.os.Build

sample code

String model = android.os.Build.MODEL;
String device = android.os.Build.DEVICE;
String version = android.os.Build.VERSION.SDK;
Log.v(TAG, "model ="+model);
Log.v(TAG, "device ="+device);
Log.v(TAG, "version ="+version);


On Dec 9 2009, 2:01 am, saikiran n <[email protected]> wrote:
> Hi
> I want to write some application in that i want to print device details like
> manufacturer,model ,userid etc..
> Is this possible in android?
> If so what are the apis which gives this information
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to