Socket
Socket
Sign inDemoInstall

react-native-device-settings

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-native-device-settings

simple platform agnostic API to open device settings menus in react native


Version published
Weekly downloads
479
increased by11.4%
Maintainers
1
Install size
7.36 kB
Created
Weekly downloads
 

Readme

Source

react-native-device-settings

React Native simple platform agnostic API to open up device settings menus

Install

npm install react-native-device-settings --save

Automatic Install

react-native link react-native-device-settings

Manual Install

iOS

-NA: using Linking RN library. URLs applicable for IOS 10.

Android

  1. In settings.gradle, insert the following code:

    include ':react-native-device-settings'
    project(':react-native-device-settings').projectDir = new File(settingsDir, '../node_modules/react-native-device-settings/android')
    
  2. In build.gradle, insert the following code:

    android {
      ...
    }
    ...
    
    dependencies {
      ...
    + compile project(':react-native-device-settings')
    }
    ...
    
  3. Edit MainActivity.java to look like this

    ...
    
    import com.rjblopes.opensettings.OpenSettingsPackage; // <-- add this import
    ...
    

Usage


import DeviceSettings from 'react-native-device-settings';

// Open settings menu
DeviceSettings.open();

// Open app settings menu
DeviceSettings.app();

// Open wifi settings menu
DeviceSettings.wifi();

Dev Notes

Developed for personal use and might be useful for others.

Keywords

FAQs

Last updated on 29 Dec 2017

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc