The manufacturer of the product/hardware. - Android Android OS

Android examples for Android OS:OS Build

Description

The manufacturer of the product/hardware.

Demo Code


//package com.java2s;

public class Main {
    /**/*ww  w.j  a  v  a 2  s.c  o  m*/
     * The manufacturer of the product/hardware. 
     * @return
     */
    public static final String obtainManufacturer() {
        String manufacturer = android.os.Build.MANUFACTURER;
        if (manufacturer == null) {
            manufacturer = "";
        }
        return manufacturer;
    }
}

Related Tutorials