-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update sample store app #9
base: main
Are you sure you want to change the base?
Conversation
mshafrir-stripe
commented
Nov 1, 2019
•
edited
Loading
edited
- Update stripe-android to v12.3.0
- Update backend API to reflect backend changes
- Update store product list and pricing to match backend
- Simplify models and use data class/@parcelize
- Update stripe-android to v12.2.0 - Update backend API to reflect backend changes - Update store product list and pricing to match backend - Simplify models and use data class/@parcelize
e1f6767
to
bcba972
Compare
if (data.shippingInformation != null) { | ||
params["shipping"] = data.shippingInformation!!.toParamMap() | ||
data.shippingInformation?.let { | ||
params["shipping"] = it.toParamMap() | ||
} | ||
params["return_url"] = "stripe://payment-auth-return" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this needed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh looks like this logic needs to be fixed - it should be a string (e.g. "fedex"
)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will do in follow-up PR