react-native-mercadopago
v1.2.2
Published
React Native wrapper for Mercadopago Cordova Plugin
Downloads
31
Maintainers
Readme
Mercadopago React Native Wrapper
Getting started
$ npm install react-native-mercadopago --save
Mostly automatic installation
$ react-native link react-native-mercadopago
iOS
- Drag the files from /node_modules/react-native-mercadopago/ios/*.framework to the Frameworks group of your project
- In General Tab for your project add the new frameworks from previous step to the Embedded Binaries.
- In Build Settings, make sure that Embedded Content Contains Swift Code is YES.
- Set Enable Bitcode to NO.
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-mercadopago
and addRNMercadopago.xcodeproj
- In XCode, in the project navigator, select your project. Add
libRNMercadopago.a
to your project'sBuild Phases
➜Link Binary With Libraries
- In General Tab for your project add the new frameworks from previous step to the Embedded Binaries.
- In Build Settings, make sure that Embedded Content Contains Swift Code is YES.
- Set Enable Bitcode to NO.
Android
- Open up
android/app/src/main/java/[...]/MainApplication.java
- Add
import com.shovelapps.rnmercadopago.RNMercadopagoPackage;
to the imports at the top of the file - Add
new RNMercadopagoPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-mercadopago' project(':react-native-mercadopago').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-mercadopago/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-mercadopago')
Usage
import RNMercadopago from 'react-native-mercadopago';
...
let publicKey = 'TEST-ad365c37-8012-4014-84f5-6c895b3f8e0a';
let prefId = '176234066-fc6d5d5e-2671-4073-ab49-362a98b720b5';
RNMercadopago.startCheckout(publicKey, prefId, null, false, (payment) => { this._success(payment)}, (error) => { this._failure(error) });
...