package com.excilys.delivroid.utils;
import android.content.Context;
import android.telephony.TelephonyManager;
public class SystemServiceUtils {
public static String getIMEI(Context context) {
TelephonyManager telephonyManager = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
return telephonyManager.getDeviceId();
}
}
|