New
-
The
PrivacyInfo.xcprivacy
lists all the data collected by Drop-In and Components. -
In the country/region picker for the payment form, you can now choose if the images of flags are shown using
showCountryFlags
.Components
let cardConfiguration = CardComponent.Configuration() cardConfiguration.style.addressStyle.showCountryFlags = true/false let cardComponent = CardComponent(paymentMethod: paymentMethod, context: context, configuration: cardConfiguration)
Drop-In
var style = DropInComponent.Style() style.formComponent.addressStyle.showCountryFlags = cardSettings.showsCountryFlags let dropInConfiguration = DropInComponent.Configuration(style: style) let dropInComponent = DropInComponent(paymentMethods: paymentMethods, context: context, configuration: dropInConfiguration)
Changed
- 3D Secure 2 SDK version: 2.4.1
Fixed
- When
clientKey
is invalid or mismatched with the environment,PublicKeyProvider
now returns a corresponding error message.