Added
- 3 new methods to
ActionComponentProvider
:canHandleAction
,requiresView
andgetSupportedActionTypes
. Adyen3DS2Component
,QRCodeComponent
,RedirectComponent
andWeChatPayActionComponent
now implementIntentHandlingComponent
and will have ahandleIntent
method. This method replaceshandleRedirectResponse
inRedirectComponent
andhandleResultIntent
inWeChatPayActionComponent
.QRCodeComponent
will now redirect QR Code actions that should work as a redirect on Android (e.g.bcmc_mobile
). Use thehandleIntent
method to handle the result of the redirect.Adyen3DS2Component
now supports the new 3DS2 frictionless flow (requires API v67). In some cases the component will now make a redirect, use thehandleIntent
method to handle the result of the redirect.- For certain card types, the CVC field will be marked as optional. The
CardComponent
performs a BIN lookup call which uses the card number to try and identify the corresponding card type and whether the CVC is required or not. - Support new
"googlepay"
txVariant. TotalPriceStatus
to theGooglePayConfiguration
.
Fixed
- Update Google Pay logo.
- Pay button not working when paying with a stored card with holder name required.
- If
GooglePayConfiguration
is not provided manually to Drop-in, Google Pay will use the amount specified inDropInConfiguration
.