Socket
Book a DemoInstallSign in
Socket

react-native-wifi-checker

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-wifi-checker

Get a list of available Wifi connections

latest
Source
npmnpm
Version
0.0.2
Version published
Maintainers
1
Created
Source

react-native-wifi-checker

Get a list of available Wifi connections

... but only for Android right now

Installation

npm install react-native-wifi-checker

Android

Add the following lines to android/settings.gradle

include ':react-native-wifi-checker'
project(':react-native-wifi-checker').projectDir = new File(settingsDir, '../node_modules/react-native-wifi-checker/android')

Add also in your dependencies in android/app/build.gradle

compile project(':react-native-wifi-checker')

Don't forget to register the module in MainActivity.java

import com.rayglaeske.react.wifi.WifiCheckerPackage;  // <--- import

public class MainActivity extends Activity implements DefaultHardwareBackBtnHandler {
  ......

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    mReactRootView = new ReactRootView(this);

    mReactInstanceManager = ReactInstanceManager.builder()
      .setApplication(getApplication())
      .setBundleAssetName("index.android.bundle")
      .setJSMainModuleName("index.android")
      .addPackage(new MainReactPackage())
      .addPackage(new WifiCheckerPackage()) // <------ add this line to yout MainActivity class
      .setUseDeveloperSupport(BuildConfig.DEBUG)
      .setInitialLifecycleState(LifecycleState.RESUMED)
      .build();

    mReactRootView.startReactApplication(mReactInstanceManager, "AndroidRNSample", null);

    setContentView(mReactRootView);
  }

  ......

}

iOS

So I have to check ObjectiveC right?

Usage

var wifi = require('react-native-wifi-checker');

// get the current wifi list
wifi.getWifiList()
  .then((wifiList) => {
    // do something with the list for example
    console.log(wifiList);
  }).done();

// I also implented a scan
wifi.scan()
  .then((scanned) => {
    if (scanned)
      console.log('cool we did a scan');
  }).done();

FAQs

Package last updated on 13 Dec 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts