react-native-pollfish-full
v1.0.8
Published
Pollfish support for **Android** and **iOS**
Downloads
11
Readme
react-native-pollfish-full
Pollfish support for Android and iOS
Getting started
$ npm install react-native-pollfish-full --save
Mostly automatic installation
$ react-native link react-native-pollfish-full
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-pollfish-full
and addRNPollfish.xcodeproj
- In XCode, in the project navigator, select your project. Add
libRNPollfish.a
to your project'sBuild Phases
➜Link Binary With Libraries
- Go to
Podfile
and add"Pollfish", "~> 4.3.5"
- Run your project (
Cmd+R
)<
Android
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import me.jerson.mobile.ads.pollfish.RNPollfishPackage;
to the imports at the top of the file - Add
new RNPollfishPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-pollfish-full' project(':react-native-pollfish-full').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-pollfish-full/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-pollfish-full')
Usage
import Pollfish from 'react-native-pollfish-full';
eventHandlers = [
surveyReceived,
surveyCompleted,
userNotEligible,
surveyNotAvailable,
surveyOpened,
surveyClosed
];
Pollfish.initialize(key, releaseMode, customMode, format, userId);
Pollfish.show();
Pollfish.hide();
Pollfish.destroy();
Pollfish.addEventListener(type, handler);
Pollfish.removeEventListener(type, handler);
Pollfish.removeAllListeners();