$ npm install react-native-samsung-iap-helper --save
$ react-native link react-native-samsung-iap-helper
- Open up
android/app/src/main/java/[...]/MainApplication.java
- Add
import com.svhawks.SamsungIapHelperPackage;
to the imports at the top of the file - Add
new SamsungIapHelperPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-samsung-iap-helper' project(':react-native-samsung-iap-helper').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-samsung-iap-helper/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-samsung-iap-helper')
import SamsungIapHelper from 'react-native-samsung-iap-helper';
// TODO: What to do with the module?
SamsungIapHelper;