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
Asked
Active
Viewed 2,553 times
1 Answers
1
React Native library for getting information about the device's network
import { NetworkInfo } from 'react-native-network-info'
// Get BSSID
NetworkInfo.getBSSID(bssid => {
console.log(bssid);
});

J.plus.123
- 107
- 4