1.0.11 • Published 4 years ago

react-native-ios-wifi v1.0.11

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

react-native-ios-wifi

Experimental implementation of automatically connecting to protected WiFi from a react native app. This version supports pod install and is compatible with react-native 0.60 and above

Getting started

$ npm install react-native-ios-wifi --save

Mostly automatic installation

$ react-native link react-native-ios-wifi $ cd ios $ pod install

Manual installation

  1. In XCode, in the project navigator, right click LibrariesAdd Files to [your project's name]
  2. Go to node_modulesreact-native-ios-wifi and add IosWifi.xcodeproj
  3. In XCode, in the project navigator, select your project. Add libIosWifi.a to your project's Build PhasesLink Binary With Libraries
  4. Run your project (Cmd+R)<

Usage

import WifiManager from 'react-native-wifi';

// Call this method to automatically connect to WiFi with password
try{
    await WifiManager.connectToProtectedSSID(ssid, password, isWep);
}catch (error) {
    console.log("Unable to connect" + error.message);
}

// Call this method to automatically connect to WiFi without password
try{
    await WifiManager.connectToSSID(ssid);
}catch (error) {
    console.log("Unable to connect" + error.message);
}

// Call this method to automatically disconnect from a given WiFi
try{
    await WifiManager.disconnectFromSSID(ssid);
}catch (error) {
    console.log("Unable to disconnect" + error.message);
}

// Call this method to fetch current WiFi details
try{
    const wifiDetails = await WifiManager.getCurrentWifiSSID(ssid);
}catch (error) {
    console.log("Unable to fetch WiFi details" + error.message);
}
1.0.11

4 years ago

1.0.10

5 years ago

1.0.9

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago