Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@underscopeio/rn-config

Getting started

react-native

readme

rn-config

Getting started

$ npm install rn-config --save

Mostly automatic installation

$ react-native link rn-config

Manual installation

iOS

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

Android

  1. Open up android/app/src/main/java/[...]/MainActivity.java

  2. Add import com.reactlibrary.RNConfigPackage; to the imports at the top of the file

  3. Add new RNConfigPackage() to the list returned by the getPackages() method

  4. Append the following lines to android/settings.gradle:

    include ':rn-config'
    project(':rn-config').projectDir = new File(rootProject.projectDir,     '../node_modules/rn-config/android')
  5. Insert the following lines inside the dependencies block in android/app/build.gradle:
      compile project(':rn-config')

Usage

import RNConfig from 'rn-config'

// TODO: What to do with the module?
RNConfig