Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get manufacturer name in android device

I need to check that android device's manufacturer is dell or not. But I haven't dell device, so cant get actually name of manufacture of device(for dell).

I'm using android.os.Build.MANUFACTURER;
Does anyone know that what is the value returned for the above query in case of a dell device?

like image 221
Niranj Patel Avatar asked Feb 19 '11 08:02

Niranj Patel


People also ask

What is device manufacturer for Android?

Android is developed by Google until the latest changes and updates are ready to be released, at which point the source code is made available to the Android Open Source Project (AOSP), an open source initiative led by Google.

How do I find device info on Android?

Go into the Settings menu of your device and check for an option that details the Android system info. This can vary depending on your brand of device and whether it's a phone or a tablet. As you can see from this screenshot, all we can really glean from this information screen is the model name and Android version.


2 Answers

Here is the wikipedia link about Android devices and MANUFACTURER strings.

EDIT: That Wikipedia page has been deleted. Here is a PDF list from Google Play which lists all supported devices and their manufacturers.

like image 194
Zimbabao Avatar answered Sep 26 '22 21:09

Zimbabao


Try this:

String deviceName = android.os.Build.MODEL; 
like image 42
Jimmy Avatar answered Sep 24 '22 21:09

Jimmy