#leraille-subscriptions
1 messages · Page 1 of 1 (latest)
@warped hollow there's no specific guide for creating subscriptions using our mobile SDKs unfortunately.
Ok. Is the mobile SDK designed to do so?
the easiest way is you're not already familiar with Stripe is to use Checkout (https://stripe.com/docs/billing/subscriptions/checkout) and just open your payment page in the device's native browser rather than do the payment in your app
the mobile SDK can do it, but there's not really any documentation so you can only really do it if you already have built a one-time payment solution and know the flow
but basically you'd half-follow https://stripe.com/docs/billing/subscriptions/elements, to get the PaymentIntent from the subscriptions' first Invoice, and then confirm that PaymentIntent with the mobile SDKs (e.g. https://stripe.com/docs/payments/accept-a-payment?platform=android&ui=payment-sheet )