How to get Mac address with Android using Corona SDK

With native, i using java code below to get Mac Address on Android:

WifiManager manager = (WifiManager) getSystemService(Context.WIFI\_SERVICE); WifiInfo info = manager.getConnectionInfo(); String address = info.getMacAddress();

Please tell me for Corona SDK with lua code to get it! Thank you very much

I believe Apple will reject apps that try and use the MAC address. Google isn’t restricting it yet, but they’ve been cracking down on getting values that can uniquely identify devices.

Rob

I believe Apple will reject apps that try and use the MAC address. Google isn’t restricting it yet, but they’ve been cracking down on getting values that can uniquely identify devices.

Rob