Google Pay and Sepa Debit Options is not showing in Payment Sheet #968
Replies: 6 comments 4 replies
-
Same here I test on android and get false when running:
Is something specific need to be set up to support it? In the stripe dashboard, it's turned on. |
Beta Was this translation helpful? Give feedback.
-
My problem was that I did not have https://pub.dev/packages/pay installed. |
Beta Was this translation helpful? Give feedback.
-
@Albertbol Can you share your method and all configuration and step you followed please . Because I just added this Library and nothing happened. I have Enabled the Google pay option from Stripe too. |
Beta Was this translation helpful? Give feedback.
-
The google pay plugin should not be needed. You can use the native Stripe embedding but you need to make sure that you add the gms wallet as instructed in the docs |
Beta Was this translation helpful? Give feedback.
-
@remonh87 I am doing same as docs but still getting this. Is it something related to my current location . I am using DE (Germany) as Country Code and EUR as Currency Code but My Current Location is India. Though I have also used IN (India) and INR too but nothing happened. Also Why I am not getting the SEPA Option? Can you please help , I am stuck in this for over 2 weeks now |
Beta Was this translation helpful? Give feedback.
-
@remonh87 Any Update Regarding this ? Please let me know. |
Beta Was this translation helpful? Give feedback.
-
Describe the bug
Google Pay and Sepa Debit Options is not showing in Payment Sheet
To Reproduce
Steps to reproduce the behavior:
await Stripe.instance.initPaymentSheet(
paymentSheetParameters: SetupPaymentSheetParameters(
allowsDelayedPaymentMethods: true,
merchantDisplayName: 'MRGO',
setupIntentClientSecret: setupIntentModel.setupIntent?.first,
googlePay: const PaymentSheetGooglePay(
merchantCountryCode: 'DE',
testEnv: true,
currencyCode: 'EUR'),
));
await Stripe.instance.presentPaymentSheet();
Expected behavior
Google Pay and Sepa Debit should also show on payment sheet . But I am only getting Card
Smartphone / tablet
bool value = await Stripe.instance.isGooglePaySupported(IsGooglePaySupportedParams(
testEnv: true
));
This value is Coming True.
Beta Was this translation helpful? Give feedback.
All reactions