#arjun-android-pm
1 messages · Page 1 of 1 (latest)
hello, what guide are you currently following?
and what is the end goal? Subscriptions? one time Payment?
Recurring payment through cron
With the current updated APIs, payment is getting charged in app. However, I want app developer should only create the payment method and pass it to backend, then backend will make the payment using that payment method
you call stripe.createPaymentMethod() in Android and pass an instance of PaymentMethodCreateParams
Can I use this for update card functionality? Users should be able to update their card information in future. When they update the card details, payment method should get updated against that customer
yes, you create a new PaymentMethod, then attach it to the Customer (optionally, delete the older attached PaymentMethod)
Okay