Java tutorial
//package com.java2s; //License from project: Open Source License import android.os.Build; public class Main { /** * device factory name, e.g: Samsung * * @return the vENDOR */ public static String getVendor() { return Build.BRAND; } }