react-native-referrer
Getting started
$ npm install react-native-referrer --save
Mostly automatic installation
$ react-native link react-native-referrer
Manual installation
Android
- 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 thegetPackages()
method - Append the following lines to
android/settings.gradle
:
3. Insert the following lines inside the dependencies block in
android/app/build.gradle`:
```
compile project(':react-native-referrer')
``
4. Insert the following lines inside the application block in
android/app/src/main/AndroidManifest.xml`:
```xml
<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();