Here you can find the source of getIMEI(Context context)
public static String getIMEI(Context context)
//package com.java2s; import android.content.Context; import android.telephony.TelephonyManager; public class Main { public static String getIMEI(Context context) { return ((TelephonyManager) context .getSystemService(Context.TELEPHONY_SERVICE)).getDeviceId(); }/*from w ww . j av a2 s.co m*/ }