Open fbele opened 1 month ago
hey @fbele So in Readme are 2 tracks the first one is for Expo Based Project the second one is for Bare React Native Project
Points 1 & 2 Are related to the bare react native Project Without Expo
Hey @msasinowski thanks for prompt reply. Ok, I understand, perhaps I somehow oversaw the 2 tracks of documentation.
It would be great if you could implement API for the rest of the payment methods, so there is at least one request for them now. :)
The tokenizeCard() method is as I understand for payments with cards. In this is case it is expected a developer needs to implement own UI (form) for putting in the card data, is that right? Then these card data is tokenized using this method, to receive the nonce
for further processing, is that correct?
Cheers
I will try to add that ASAP, at least a 3D Secure one.
@msasinowski Perfect! Thanks for that. If you manage to implement also Apple Pay and Google Pay later on it would be exceptional! As for me, this is now the only library that implements a seamless integration with Braintree SDK. It would be really awesome if it would support all functionalities of the SDK.
Perhaps one more thing that I noticed: The tokanizeCard()
method options type TokenizeCardOptions
is missing some fields as per Braintree SDK documentation: https://developer.paypal.com/braintree/docs/reference/client-reference/javascript/v2/credit-cards#options, like expirationDate
and billingAdress
.
Do you plan to add these fields too?
@msasinowski I see your opened pull request for quite a while now. How do we proceed? Who can approve your pull request so the code can get merged?
Hey there,
Thank you for your amazing effort. I am implementing your module and so far so good. I have few remarks considering the integration and the current Readme documentation:
ExpoBraintreeConfig.swift
file is not necessary to be created manually as it is being created automatically when usingnpx expo prebuild
. Same goes with the update toAppDelegate.m
orAppDelegate.mm
file, so perhaps this part can be removed from Readme? What I only notice, but it doesn't really matter, is that the Swift file and class are namedBraintreeExpoConfig
instead ofExpoBraintreeConfig
.AndroidManifest.xml
andInfo.plist
can also be removed as all necessary is being automatically added usingnpx expo prebuild
xCodeProjectAppName
configuration ofreact-native-expo-braintree
plugin declaration inapp.json
file necessary?expo-braintree
module when using it instead of importingreact-native-expo-braintree
like specified in your usage examples?Thanks