- DataCollector
- Reference Kount library only when needed to prevent JVM from loading it when it isn't being used by a merchant.
- SEPADirectDebit
- Add support for SEPA Direct Debit for approved merchants through the Braintree SDK
- SEPA Direct Debit is only available to select merchants, please contact your Customer Support Manager or Sales to start processing SEPA bank payments
- Merchants should use the
BTSepaDirectDebitClient.tokenize
method while passing in the activity andBTSEPADirectDebitRequest
- PayPalNativeCheckout (BETA)
- Requirement - Needs to be built on Java 11
- Adding in [PayPalNativeCheckout] module to use the native checkout for PayPal
- Adds
PayPalNativeCheckoutClient
that handles launching the native checkout session, the session
start parameters are similar to that ofPaypalClient
with the main difference being it doesn't
use the browserSwitch to checkout on web but instead consumes the native checkout sdk. This provides
a much more native feel to checking out with PayPal. - Adds
PayPalNativeCheckoutAccount
to represent tokenizing a PayPal request - Adds
PayPalNativeCheckoutAccountNonce
that represents the value returned from the web - Adds
PayPalNativeCheckoutFragment
that shows how to launch the native checkout sdk - Adds
PayPalNativeCheckoutCreditFinancing
to represent the PayPal credit financing response - Adds
PayPalNativeCheckoutCreditFinancingAmount
to represent the PayPal finance amount - Adds
PayPalNativeCheckoutLineItem
to represent a line item for checkout flows - Adds
PayPalNativeCheckoutListener
to receive result notifications - Adds
PayPalNativeCheckoutPaymentIntent
to represent the payment intent for an order - Adds
PayPalNativeCheckoutPaymentResource
to represent the data returned from the internal checkout client
to fetch the return url - Adds
PayPalNativeCheckoutRequest
to represent all items needed to begin the native checkout flow - Adds
PayPalNativeCheckoutVaultRequest
to represent all items needed to begin the native vault flow - Adds
PayPalNativeRequest
to represent the base items needed for checkout and vault requests - Adds
PayPalNativeCheckoutResultCallback
to listen to the result returned from the checkout response