Java tutorial
//package com.java2s; import android.content.Context; import android.net.wifi.WifiManager; public class Main { /** * Gets the device id. * * @param context the context * @return the device id */ public synchronized static String getDeviceId(Context context) { WifiManager wm = (WifiManager) context.getSystemService(Context.WIFI_SERVICE); return wm.getConnectionInfo().getMacAddress(); } }