1

I want to have unique wifi name from my database. can i get mac address or BSSID by react Native? i want to select technolojy of react native if it can do this .is there any body to help me

Par Khco
  • 21
  • 1
  • 5

1 Answers1

1

React Native library for getting information about the device's network

react-native-network-info

import { NetworkInfo } from 'react-native-network-info'

// Get BSSID
NetworkInfo.getBSSID(bssid => {
  console.log(bssid);
});
J.plus.123
  • 107
  • 4