1.0.1 • Published 5 years ago
rn-network-request v1.0.1
react-native-network-request
Getting started
$ npm install react-native-network-request --save
Mostly automatic installation
$ react-native link react-native-network-request
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-network-requestand addRNNetworkRequest.xcodeproj - In XCode, in the project navigator, select your project. Add
libRNNetworkRequest.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.RNNetworkRequestPackage;to the imports at the top of the file - Add
new RNNetworkRequestPackage()to the list returned by thegetPackages()method
- Append the following lines to
android/settings.gradle:include ':react-native-network-request' project(':react-native-network-request').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-network-request/android') - Insert the following lines inside the dependencies block in
android/app/build.gradle:compile project(':react-native-network-request')
Windows
- In Visual Studio add the
RNNetworkRequest.slninnode_modules/react-native-network-request/windows/RNNetworkRequest.slnfolder to their solution, reference from their app. - Open up your
MainPage.csapp
- Add
using Network.Request.RNNetworkRequest;to the usings at the top of the file - Add
new RNNetworkRequestPackage()to theList<IReactPackage>returned by thePackagesmethod
Usage
import RNNetworkRequest from 'react-native-network-request';
// TODO: What to do with the module?
RNNetworkRequest;