README
react-native-adex
Getting started
$ npm install react-native-adex --save
Mostly automatic installation
$ react-native link react-native-adex
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-adex
and addRNAdex.xcodeproj
- In XCode, in the project navigator, select your project. Add
libRNAdex.a
to 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.RNAdexPackage;
to the imports at the top of the file - Add
new RNAdexPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-adex' project(':react-native-adex').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-adex/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-adex')
Usage
import AdexAdSlot from 'react-native-adex';
// Set the URI generated in the Adex Slots section (https://beta.adex.network/dashboard/publisher/slots)
const uri = `https://view.adex.network?width=300&height=200&slotId=5bc8334b734d2a0022283ca8&slotIpfs=QmVwTHMNvdcRS7fYnCyHRWwzgiWnybEgZtR8vQvGcGVxNi&fallbackImgIpfs=Qmb5fRZT5HSdYdYN8PQGyPZjR8TWhoRz5wScAgAuzej2fX&fallbackUrl=https%3A%2F%2Fvr3.io`
// Import the component with the prop
<AdexAdSlot uri={uri} />