react-native-adex

## Getting started

Usage no npm install needed!

<script type="module">
  import reactNativeAdex from 'https://cdn.skypack.dev/react-native-adex';
</script>

README

react-native-adex

Getting started

$ npm install react-native-adex --save

Mostly automatic installation

$ react-native link react-native-adex

Manual installation

iOS

  1. In XCode, in the project navigator, right click LibrariesAdd Files to [your project's name]
  2. Go to node_modulesreact-native-adex and add RNAdex.xcodeproj
  3. In XCode, in the project navigator, select your project. Add libRNAdex.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
  • Add import com.reactlibrary.RNAdexPackage; to the imports at the top of the file
  • Add new RNAdexPackage() to the list returned by the getPackages() method
  1. 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')
    
  2. 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} />