Here you can find the source of getIMEI(Context context)
Parameter | Description |
---|---|
context | a parameter |
public static String getIMEI(Context context)
//package com.java2s; import android.content.Context; import android.telephony.TelephonyManager; public class Main { /**/*from w ww. j av a2s.co m*/ * get Imei * @param context * @return imei * */ public static String getIMEI(Context context) { try { TelephonyManager mTelephonyMgr = (TelephonyManager) context .getSystemService(Context.TELEPHONY_SERVICE); String imei = mTelephonyMgr.getDeviceId(); return imei; } catch (Exception e) { } return null; } }