0.0.16 • Published 5 years ago
react-native-intercom-rn-library-testnvu v0.0.16
react-native-intercom-rn-library
Getting started
$ npm install react-native-intercom-rn-library --save
Mostly automatic installation
$ react-native link react-native-intercom-rn-library
Manual installation
iOS
- In XCode, in the project navigator, right click
Libraries➜Add Files to [your project's name] - Go to
node_modules➜react-native-intercom-rn-libraryand addRNIntercomRnLibrary.xcodeproj - In XCode, in the project navigator, select your project. Add
libRNIntercomRnLibrary.ato your project'sBuild Phases➜Link Binary With Libraries - Run your project (
Cmd+R)<
Android
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import com.reactlibrary.RNIntercomRnLibraryPackage;to the imports at the top of the file - Add
new RNIntercomRnLibraryPackage()to the list returned by thegetPackages()method
- Append the following lines to
android/settings.gradle:include ':react-native-intercom-rn-library' project(':react-native-intercom-rn-library').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-intercom-rn-library/android') - Insert the following lines inside the dependencies block in
android/app/build.gradle:compile project(':react-native-intercom-rn-library')
Windows
- In Visual Studio add the
RNIntercomRnLibrary.slninnode_modules/react-native-intercom-rn-library/windows/RNIntercomRnLibrary.slnfolder to their solution, reference from their app. - Open up your
MainPage.csapp
- Add
using Intercom.Rn.Library.RNIntercomRnLibrary;to the usings at the top of the file - Add
new RNIntercomRnLibraryPackage()to theList<IReactPackage>returned by thePackagesmethod
Usage
import RNIntercomRnLibrary from 'react-native-intercom-rn-library';
// TODO: What to do with the module?
RNIntercomRnLibrary;