github Adyen/adyen-android 5.14.0

13 days ago

Fixed

  • For components that require text input from the shopper, there is no longer a compatability issue with Material (from version 1.13.0-alpha12 or later) that causes a crash.
  • When the device font is large, the input fields now get larger to fit the text.
  • When the shopper selects the Pay button, the keyboard now automatically gets hidden.

Changed

  • For UPI:
    • The input field for the UPI ID is now in a more user-friendly location on the screen.
    • The option to pay by QR code is removed.
  • Dependency versions:
    Name Version
    Adyen 3DS2 2.2.24 -> 2.2.25

Deprecated

  • The Threeds2FingerprintAction and Threeds2ChallengeAction actions are now deprecated. Use Threeds2Action instead.
  • Configuration and configuration builder classes for Drop-in, payment methods and actions are now deprecated. Use CheckoutConfiguration instead.
  • Configuration setter methods are replaced by property access syntax. For example:
CheckoutConfiguration(
    environment = environment,
    clientKey = clientKey,
) {
    card {
        // Deprecated
        setHolderNameRequired(true)
        // Replacement
        isHolderNameRequired = true
    }
}
  • The setSubmitButtonVisible method for configuration objects is now deprecated. Use CheckoutConfiguration instead:
CheckoutConfiguration(
    ...
    isSubmitButtonVisible = false
) {
    ...
}

Don't miss a new adyen-android release

NewReleases is sending notifications on new releases.