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