Here you can find the source of getImei(Context context, String imei)
public static String getImei(Context context, String imei)
//package com.java2s; import android.content.Context; import android.telephony.TelephonyManager; public class Main { public static String getImei(Context context, String imei) { TelephonyManager telephonyManager = (TelephonyManager) context .getSystemService(Context.TELEPHONY_SERVICE); imei = telephonyManager.getDeviceId(); return imei; }/*from w ww . j a va 2s. c o m*/ }