React Native Get Mac Address

yarn add react-native-device-info

...

DeviceInfo.getMacAddress().then((mac) => {
  // "E5:12:D8:E5:69:97"
});
GutoTrosla