#abdul-jabbar_error
1 messages · Page 1 of 1 (latest)
👋 Welcome to your new thread!
⏲️ We'll be here soon! We typically respond in a few minutes, but in some cases we might need a bit more time (e.g., server's busy, you've got a complex question, etc.).
⏱️ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can 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/1249691484324761694
📝 Have more to share? Add details, code, screenshots, videos, etc. below.
Have you followed this steps when going live?
https://docs.stripe.com/google-pay?platform=android#going-live
Hi , we are currently testing this in test mode. However, I have done the going live setup and not gone live yet
we are testing this is test API key
Ah you are facing this in the test mode ?
yes, test mode ..
This is quit tricky then, can you try to reproduce on the Stripe official samples and share with us the reproduction steps please:
https://github.com/stripe/stripe-android/tree/master/paymentsheet-example
On google troublesheet , they have mentioned
https://developers.google.com/pay/api/android/guides/tutorial#java
"gateway": "stripe"
"stripe:version": "2018-10-31"
"stripe:publishableKey": "YOUR_PUBLIC_STRIPE_KEY"
does this apply for react native stripe integration , do we need to mention the gateway ?
For ReactNative, I invite you to reproduce on the official sample:
https://github.com/stripe/stripe-react-native/tree/master/example
If you are using Google Pay APIs yes if you are using PaymentSheet no
Thanks. I am using 'Mobile Payment Element' Recommended as per stripe doc
Also is this relavant for my setup
https://developers.google.com/pay/api/android/guides/setup
dependencies {
implementation 'com.google.android.gms:play-services-wallet:19.4.0'
}
Have you had the chance to try to reproduce the issue on Stripe official RN sample ?
Because stripe documentation page recommends to follow
You need just implementation 'com.stripe:stripe-android:20.44.2'
sorry what is RN sample, this one https://github.com/stripe/stripe-react-native/tree/master/example ?
Yes
Did you add the metadata in the android manifest ?
https://docs.stripe.com/payments/accept-a-payment?platform=android#android-google-pay
Doing a test quickly with you..
yes, I have mentioned in my summarty to start with this thread
<meta-data android:name="com.google.android.gms.wallet.api.enabled" android:value="true" />
Sorry missed that.
No worries. Are you testing this locally with sample ?
ok. do you have read me on how to up and run https://github.com/stripe/stripe-react-native/tree/master
git pull
cd example
yarn install
npm run start:server
# open another terminal
npm run android # add any additional flags to run the sample on your device/emulator
thanks