List of utility methods to do Wifi Address Get
String | getWifiMacAddress() get Wifi Mac Address WifiManager wifi = (WifiManager) App.getInstance()
.getSystemService(Context.WIFI_SERVICE);
WifiInfo info = wifi.getConnectionInfo();
return info.getMacAddress();
|
String | getDeviceUDID(Context context) Obtain device wifi mac address(UDID) WifiManager wifi = (WifiManager) context
.getSystemService(Context.WIFI_SERVICE);
WifiInfo info = wifi.getConnectionInfo();
return info.getMacAddress();
|
String | getDeviceUniqueIdentificator( @Nonnull Context context, @Nonnull String appId) Generates an unique, stable UID that identifies the device where the user is currently logged. String telephonyId = null; String androidId = null; if (hasTelephony(context)) { final TelephonyManager telephony = (TelephonyManager) context .getSystemService(Context.TELEPHONY_SERVICE); telephonyId = telephony.getDeviceId(); if (telephonyId == null) { ... |