Java tutorial
//package com.java2s; //License from project: Open Source License import android.os.Build; public class Main { /** * device model name, e.g: GT-I9100 * * @return the user_Agent */ public static String getDevice() { return Build.MODEL; } }