#dev-travis_docs
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1509885753901977710
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
We usualy don't provide code review here. Do you have a particular issue ?
You can check our offical example:
https://github.com/stripe/stripe-react-native/tree/master/example
it has TaptoPay example
So how can I get a code review from the Stripe developer team to ensure that my implementation is fully correct?
The main documentation is not fully complete, and the example app is a bit confusing.
We don't provide code review, sorry.
The main documentation is not fully complete, and the example app is a bit confusing.
What is the missing part
Can you share more details ?
What part is confusing exactly ?
Happy to assist if you have a particular issue ?
have you had a chance to run your app ? any particular issue ?
yes my app is working fine and have many customers
But the problem is my init scree
My real problem is init proccessing
like init-teminal / dicover-reader / connect-reader
it takes 10s to full connect to tap to pay reader
You are doing this each time you accept a payment ? if so you should set automatic auto reconnect:
https://docs.stripe.com/terminal/payments/connect-reader?terminal-sdk-platform=react-native&reader-type=tap-to-pay#automatically-attempt-reconnection
and not initialize the terminal and discover the reader each time you accept a payment
No, Iâm currently doing it like this:
First, I initialize after the splash screen(just one time), and once initialization is successful, I navigate to the Home (payment) screen.
I also pass autoReconnect when calling connectReader, as shown in the code I shared earlier.
Nice then, it's expected that the whole process take some time (it depends on the network too and the host phone device)
Do you have any advice to speed up this process?