Update SDKs for Identity#2180
Closed
Twigz wants to merge 3 commits into
Closed
Conversation
lng-stripe
reviewed
Oct 22, 2025
| nextActionMap.putString("qrCodeUrl", it.qrCodeUrl) | ||
| } | ||
| } | ||
| NextActionType.DisplayPromptPayDetails -> { |
Collaborator
There was a problem hiding this comment.
Curious why iOS doesn't need a similar change?
Collaborator
Author
There was a problem hiding this comment.
That, is a good question. The answer appears to be, it probably should, but hasn't kept up to date for a while. The reason it's not flagged is because it uses a default case in Swift.
default: // .useStripeSDK, .BLIKAuthorize, .unknown
return nil
}Currently the only implemented cases are:
verifyWithMicrodeposits
redirectToURL
weChatPayRedirectToApp
alipayHandleRedirect
OXXODisplayDetails
boletoDisplayDetails
konbiniDisplayDetailsBased on comparing the available iOS cases to implemented Android cases, likely the following need to be added for functionality
case payNowDisplayQrCode
case promptpayDisplayQrCode
case swishHandleRedirect
case multibancoDisplayDetailswith a few others being defined but being a no-op (upiAwaitNotification and cashAppRedirectToApp)
I can handle that as part of this PR if what I've explained is correct that this is an oversight due to a default switch case. Let me know @lng-stripe / @mats-stripe.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Updated iOS/Android SDKs, mainly to support the new Identity changes made by the Identity team.
This update in particular handles icon display during Identity Verification, as well as auto-dismissal of verification completion.
Motivation
Changes to the Identity framework were necessary to support some Crypto Onramp features.
Testing
Documentation
Select one:
Screenshots