#sandip5831
1 messages · Page 1 of 1 (latest)
👋 happy to help
this seems to be a 3DS issue
how are you integrating with Stripe?
Ok let me share the steps
Step 1.] I have configure with 3DS
PaymentConfiguration.init(this, stripe_publishable_key!!)
val uiCustomization = PaymentAuthConfig.Stripe3ds2UiCustomization.Builder()
.setLabelCustomization(
PaymentAuthConfig.Stripe3ds2LabelCustomization.Builder()
.setTextFontSize(12)
.build()
)
.build()
PaymentAuthConfig.init(
PaymentAuthConfig.Builder()
.set3ds2Config(
PaymentAuthConfig.Stripe3ds2Config.Builder()
.setTimeout(10)
.setUiCustomization(uiCustomization)
.build()
)
.build()
)
Step 2.] Create EphemeralKey
Step 3.] And then present the PaymentSession.
Hey! Taking over for my colleague. I think you are following this guide:
https://stripe.com/docs/payments/3d-secure?platform=android#when-to-use-3d-secure
right ?
Yes
Doing a test on this test activity ...
https://github.com/stripe/stripe-android/blob/master/example/src/main/java/com/stripe/example/activity/PaymentAuthActivity.kt#L35
I'm not able to reproduce the error you are facing.... Did you tried that sample activity ?
Why debit card not working in stripe?