This project has been created from react-native-iot-wifi the work of Nectar Sun.
$ npm install react-native-wifi-tools --save
$ react-native link react-native-wifi-tools
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜react-native-wifi-tools
and addWifiTools.xcodeproj
- In XCode, in the project navigator, select your project. Add
libWifiTools.a
to your project'sBuild Phases
➜Link Binary With Libraries
- Run your project (
Cmd+R
)<
- Open up
android/app/src/main/java/[...]/MainApplication.java
- Add
import com.reactlibrary.WifiToolsPackage;
to the imports at the top of the file - Add
new WifiToolsPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-wifi-tools' project(':react-native-wifi-tools').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-wifi-tools/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-wifi-tools')
Permissions required:
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
import WifiTools from 'react-native-wifi-tools';
// TODO: What to do with the module?
WifiTools;