seanzhang-stripe
seanzhang-stripe
Hi @DeveloperLookBook Can you try running a [git clone](https://www.atlassian.com/git/tutorials/setting-up-a-repository/git-clone) from your CLI to clone the project instead?
It looks like `org.bouncycastle:bcprov-jdk15to18` and `org.bouncycastle:bcprov-jdk18on` can't co-exist. I'm not sure if `com.sumsub.sns:idensic-mobile-sdk:1.27.1` can use the same `org.bouncycastle:bcprov-jdk15to18:1.69` that Stripe SDK uses. but you can try [excluding](https://docs.gradle.org/current/userguide/dependency_downgrade_and_exclude.html#sec:excluding-transitive-deps) `org.bouncycastle:bcutil-jdk18on` from `com.sumsub.sns:idensic-mobile-sdk`...
Hi @Alex-Farago I believe your inquiry is related to Stripe Terminal iOS SDK, and we have a dedicated [Github repo](https://github.com/stripe/stripe-terminal-ios) for it. I'd close this ticket, feel free to open...
Hi @razi1997 Did you see any errors in react-native console? By the way you don't need to specify `clientSecret` when calling `presentPaymentSheet`, refer to this [doc](https://stripe.dev/stripe-react-native/api-reference/modules/PaymentSheet.html#PresentOptions) to view the list...
`paymentOption` will be returned from `presentPaymentSheet` if you are using the [custom flow ](https://docs.stripe.com/payments/accept-a-payment?platform=react-native&mobile-ui=payment-element#react-native-flowcontroller) (i.e., setting `customFlow` to true in `initPaymentSheet`)
If you set `setup_future_usage` on a PaymentIntent, the PaymentSheet will hide the 'Save this card for future use' checkbox and always saves. ([ref](https://github.com/stripe/stripe-android/blob/master/CHANGELOG.md#1810---2021-10-18 )) About the `undefined` paymentOption, can you...
Hi @g-cappai The [PaymentOption](https://stripe.dev/stripe-react-native/api-reference/interfaces/PaymentSheet.PaymentOption.html) returned from [presentPaymentSheet](https://stripe.dev/stripe-react-native/api-reference/index.html#presentPaymentSheet) contains label and image that you can use to update your UI. Can you tell me what other information you need for your...
Hi @g-cappai The SDK won't create a `PaymentMethod` until `confirmPaymentSheetPayment` is called, and that's why the `PaymentMethod` is not available in `PaymentOption` object. There's a similar discussion [here](https://github.com/stripe/stripe-android/issues/8071). Will adding...
Hi @srikanthpacco can you post the crash log here? You can refer to this [page](https://reactnative.dev/docs/next/native-debugging) for accessing native logs.
Hi @alexiz10 Although you can set [trial](https://docs.stripe.com/api/subscription_schedules/create?lang=curl#create_subscription_schedule-phases-trial) to a phase when creating a subscription schedule, the resulting subscription schedule object doesn't have a `trial` property in their phases. Can you...