File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed
Venmo/src/main/java/com/braintreepayments/api/venmo Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 11# Braintree Android SDK Release Notes
22
3+ ## unreleased
4+
5+ * Venmo
6+ * Fixed bug in ` VenmoClient ` where ` deepLinkFallbackUrlScheme ` was not being set correctly in deprecated constructor
7+
38## 5.14.0 (2025-07-23)
49
510* PayPal
Original file line number Diff line number Diff line change @@ -97,7 +97,13 @@ class VenmoClient internal constructor(
9797 context: Context ,
9898 authorization: String ,
9999 returnUrlScheme: String? = null
100- ) : this (BraintreeClient (context, authorization, returnUrlScheme))
100+ ) : this (
101+ BraintreeClient (
102+ context = context,
103+ authorization = authorization,
104+ deepLinkFallbackUrlScheme = returnUrlScheme
105+ )
106+ )
101107
102108 /* *
103109 * Start the Pay With Venmo flow. This will return a [VenmoPaymentAuthRequestParams] that
You can’t perform that action at this time.
0 commit comments