react-native-payments icon indicating copy to clipboard operation
react-native-payments copied to clipboard

Accept Payments with Apple Pay and Android Pay using the Payment Request API.

Results 134 react-native-payments issues
Sort by recently updated
recently updated
newest added

The LICENSE link is broken in the README.md file. Some License lookup scripts are failing for this package due to this issue. Considering the LICENSE described in the README.md was...

Can you add canMakePaymentsWithActiveCard for "Set Up Apple Pay " button?

```javascript const canMakePayment = await PaymentRequest.canMakePayments(); if (canMakePayment) { throw new Error("Can not make payment."); } ``` When I call this method in my code it returns falls. It even...

Creating a payment with Braintree returns an Braintree is not a supported gateway error. My code is as follows; `const METHOD_DATA = [ { supportedMethods: ['apple-pay'], data: { merchantIdentifier: 'merchant.com.zebr',...

This MR changes a few things in the current Android implementation. - Update to non-deprecated gradle directives - Updates to use AndroidX - Updates Android implementation to use current, non-deprecated...

It is possible to tokenize a payment method to charge the user at the end of the month a variable amount depending of the consuming of that month? I'm using...

i need to integrate android/google Pay in my app. used react-native-payments for integrate native payment wallet. Sheet open in type os TEST mode but in release mode give error Like...

const METHOD_DATA = [{ supportedMethods: ['apple-pay'], data: { merchantIdentifier: 'merchant.com.arganpackage.arganpackage', supportedNetworks: ['visa', 'mastercard', 'amex'], countryCode: 'US', currencyCode: 'USD' } }]; const DETAILS = { id: 'basic-example', displayItems: [ { label:...

Hi! I was trying to setup this library and I'm having some problems on Ios: ![image](https://user-images.githubusercontent.com/18408823/109400583-55cbbb80-7928-11eb-9dd8-fe99bdd798b2.png) I tried adding on Link Binary with Libraries the file libswiftwebkit: ![image](https://user-images.githubusercontent.com/18408823/109400595-5fedba00-7928-11eb-826b-0866adc835e1.png) But I...

While Using React native Apple pay i got processPayment is not defined....how to solve this Error const paymentRequest = new PaymentRequest(METHOD_DATA, DETAILS); paymentRequest.show() .then(paymentResponse => { console.log('paymentResponse => ', paymentResponse);...