Skip to content

Commit

Permalink
update init in sample apps
Browse files Browse the repository at this point in the history
  • Loading branch information
jaxdesmarais committed Dec 19, 2024
1 parent 8303d60 commit 33ebd8b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion SampleApps/CarthageTest/CarthageTest/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ class ViewController: UIViewController {
let payPalClient = BTPayPalClient(apiClient: apiClient)
let payPalMessagingView = BTPayPalMessagingView(apiClient: apiClient)
let threeDSecureClient = BTThreeDSecureClient(apiClient: apiClient)
let venmoClient = BTVenmoClient(apiClient: apiClient)
let venmoClient = BTVenmoClient(
apiClient: apiClient,
universalLink: URL(string: "https://mobile-sdk-demo-site-838cead5d3ab.herokuapp.com/braintree-payments")!
)
let sepaDirectDebitClient = BTSEPADirectDebitClient(apiClient: apiClient)
}
}
Expand Down
5 changes: 4 additions & 1 deletion SampleApps/SPMTest/SPMTest/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ class ViewController: UIViewController {
let payPalClient = BTPayPalClient(apiClient: apiClient)
let payPalMessagingView = BTPayPalMessagingView(apiClient: apiClient)
let threeDSecureClient = BTThreeDSecureClient(apiClient: apiClient)
let venmoClient = BTVenmoClient(apiClient: apiClient)
let venmoClient = BTVenmoClient(
apiClient: apiClient,
universalLink: URL(string: "https://mobile-sdk-demo-site-838cead5d3ab.herokuapp.com/braintree-payments")!
)
let sepaDirectDebitClient = BTSEPADirectDebitClient(apiClient: apiClient)
}
}

0 comments on commit 33ebd8b

Please sign in to comment.