SystemServiceUtils.java :  » App » delivroid » com » excilys » delivroid » utils » Android Open Source

Android Open Source » App » delivroid 
delivroid » com » excilys » delivroid » utils » SystemServiceUtils.java
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();
  }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.