react-native-stripe-terminal
react-native-stripe-terminal copied to clipboard
React Native bindings for the Stripe Terminal SDK. (Unofficial)
Is it expected that these warnings should be shown? Happens on startup ``` ... WARN Sending `requestConnectionToken` with no listeners registered. WARN Sending `abortDiscoverReadersCompletion` with no listeners registered. WARN Sending...
Hope anyone has knowledge on android add support to https://stripe.com/docs/terminal/payments/saving-cards#saving-payment-intent-card . Cant get **generated_card** on response after **processPayment** called ref : https://github.com/stripe/stripe-terminal-android/issues/31
Hi everyone! I got that warning after call ``` StripeTerminal.discoverReaders( //StripeTerminal.DeviceTypeReaderSimulator, StripeTerminal.DeviceTypeChipper2X, StripeTerminal.DiscoveryMethodBluetoothProximity ); ``` Object { "error": "Bluetooth Low Energy is not supported on this iOS device. Use a...
Great package! This has been a lifesaver for the current RN project I am on. However, I am wondering how to handle cancelling a CollectPaymentMethod SDK command after creating? The...
Hello! As I was looking through the documentation and the example code provided, I noticed that the only `deviceType` supported currently is the `DeviceTypeChipper2X`. Is there any support for the...
Attempt to invoke virtual method 'double java.lang.Double.doubleValue()' on a null object reference
When trying to discover readers, I'm getting the following error message: `Attempt to invoke virtual method 'double java.lang.Double.doubleValue()' on a null object reference` Following the guidance in the README, here's...
Currently, on a simulated reader, I do get a payment intent, and also the detail is sent to my stripe dashboard. But the payment does not go through, can you...
I followed your example. and created payment. StripeTerminal.createPayment({ amount: 1200, currency: "usd" }) .then(intent => { console.log('Payment intent created', intent); }) .catch(error => { console.log("creating payment error",error); }); But How...
is this support for save card using terminal
Need to create more fleshed out documentation including - [ ] core API docs - [ ] hooks API - [ ] connection manager