tapsellorg / TapsellPlusSDK-ReactNativePlugin

2 stars 2 forks source link

TapsellPlusSDK-ReactNativePlugin npm version

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
Manual installation (Older react native versions) #### Android 1. 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 the `getPackages()` method 2. 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') ``` 3. 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;