JeandeCampredon / react-native-referrer

react native module to access referrer from JS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

react-native-referrer

npm version npm license npm download npm download

Getting started

$ npm install react-native-referrer --save

Mostly automatic installation

$ react-native link react-native-referrer

Manual installation

Android

  1. Open up android/app/src/main/java/[...]/MainActivity.java
  • Add import com.jdc.reactlibrary.RNReferrerPackage; to the imports at the top of the file
  • Add new RNReferrerPackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
    include ':react-native-referrer'
    project(':react-native-referrer').projectDir = new File(rootProject.projectDir, 	'../node_modules/react-native-referrer/android')
    
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
    compile project(':react-native-referrer')
    
  3. Insert the following lines inside the application block in android/app/src/main/AndroidManifest.xml:
    <receiver android:name="com.jdc.reactlibrary.ReferrerReceiver" android:exported="true">
      <intent-filter>
        <action android:name="com.android.vending.INSTALL_REFERRER" />
      </intent-filter>
    </receiver>

Usage

import RNReferrer from 'react-native-referrer';

...
const referer = await RNReferrer.getReferrer();

About

react native module to access referrer from JS

License:MIT License


Languages

Language:Java 95.3%Language:JavaScript 4.7%