Obviously I know it will return htc but is it caps or lower case? I recently had a user of one of my apps tell me one of the functions crashed his phone so I want to exclude that function from htc devices for the time being based on what I get from Build.MANUFACTURER and also Build.VERSION.SDK_INT. I just have no idea what will return from Build.MANUFACTURER on an htc device or other devices for that matter. Does anyone know of a list somewhere that would have all that type of info?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Please see this link for a list of manufacturers.

Here is how I detect whether or not a device is manufactured by HTC. Note that I don't care whether or not it matches HTC or htc exactly, I toLower() it and check to see if Build.MANUFACTURER CONTAINS htc at all.

    public boolean isAnHTCDevice()
    {
        String manufacturer = android.os.Build.MANUFACTURER;
        if (manufacturer.toLowerCase().contains("htc"))
            return true;
        else
            return false;
    }
link|improve this answer
1  
lol right on man thanks I know that'll work. Sometimes after working on the more complicated pieces of an application the simpler parts tend to escape my grasp :p – James andresakis Nov 26 '11 at 2:02
feedback

Your Answer

 
or
required, but never shown

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