react-native-tapsell-plus
v2.2.8
Published
TapsellPlus React native plugin.
Downloads
108
Readme
TapsellPlusSDK-ReactNativePlugin
react-native-tapsell-plus
Getting started
$ npm install react-native-tapsell-plus --save
If your react-native version is below
0.60
, you need to link it as well:$ react-native link react-native-tapsell-plus
Android
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import com.reactlibrary.RNTapsellPlusPackage;
to the imports at the top of the file - Add
new RNTapsellPlusPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-tapsell-plus' project(':react-native-tapsell-plus').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-tapsell-plus/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-tapsell-plus')
Usage
import RNTapsellPlus from 'react-native-tapsell-plus';
// TODO: What to do with the module?
RNTapsellPlus;