Configure Expo Prebuild Plugin
masterThis package requires custom native code and cannot be used in the standard 'Expo Go' app. To use it with Expo, add the react-native-wifi-reborn plugin to your app.json or app.config.js:
{
"expo": {
"ios": {
"infoPlist": {
"NSLocalNetworkUsageDescription": "The app requires access to the local network so it can..."
}
},
"plugins": ["react-native-wifi-reborn"]
}
}Plugin Props:
fineLocationPermission(false | undefined): If set tofalse,android.permission.ACCESS_FINE_LOCATIONwill not be added to theAndroidManifest.xml.
{
"plugins": [
[
"react-native-wifi-reborn",
{
"fineLocationPermission": false
}
]
]
}