react-native-braintree-xplat
react-native-braintree-xplat copied to clipboard
Cross-platform Braintree module for React Native
Any plan to upgrade the iOS SDK to v4? At least, please update to v3.9.9 to support full capability of SDK3. Thx~ I tried to replace all contents inside `braintree`...
I use version "3.2.0" of "react-native-braintree-xplat" and react native 0.42 I have managed to build a custom "pay by card" checkout using getCardNonce method and everything works fine.I would also...
closing or cancelling the process does not trigger error. version - 2.4.0 platform - android
``` FATAL EXCEPTION: main Process: com.test, PID: 1861 java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=1706816330, result=3, data=Intent { (has extras) }} to activity {com.test/com.test.MainActivity}: java.lang.RuntimeException: Cannot convert argument of type class...
``` import React, { Component } from 'react'; import { AppRegistry, Text, TouchableOpacity, Platform, View } from 'react-native'; import BTClient from 'react-native-braintree-xplat'; export default class bt extends Component { onPress()...
It's occurring at this line: https://github.com/kraffslol/react-native-braintree-xplat/blob/master/ios/RCTBraintree/RCTBraintree.m#L99 Here's the error I'm getting delivered to fabric: ``` Fatal Exception: NSInvalidArgumentException 0 CoreFoundation 0x187e801c0 __exceptionPreprocess 1 libobjc.A.dylib 0x1868b855c objc_exception_throw 2 CoreFoundation 0x187d5f600 -[__NSPlaceholderArray...
If you look at the Braintree paypal docs they use `requestOneTimePayment` for making payments along with a precise amount: https://developers.braintreepayments.com/guides/paypal/checkout-with-paypal/ios/v4 _xplat_ on the other hand just gets the nonce without...