Naxam.Paypal.DataCollector

Xamarin.Android Binding Library for Braintree SDK - Paypal.DataCollector 3.15.0.1


Keywords
Xamarin.Android, Binding, Library, for, Braintree, SDK, android, bindings, braintree-android, braintree-android-sdk, hacktoberfest, xamarin, xamarin-android-binding
License
Other
Install
Install-Package Naxam.Paypal.DataCollector -Version 3.15.0.1

Documentation

BrainTree for Xamarin.Android

A Xamarin.Android binding library for BrainTree DropIn Android library.

The library used to be under the name of Naxam.BraintreeDropIn.Droid. Naxam is no longer in business for years hence I remove the trademark from the name and hope it more neutral for the community to contribute.

Installation

Install-Package BraintreePayments.API.DropIn.Droid

Usage

This project is to provide C# libraries for corresponding libraries in Java/Kotlin, however, the APIs are exactly the same.

Here are snippets which could be found in MainActivity in the demo project.

Set up

dropInRequest = new DropInRequest();
dropInRequest.PayPalRequest = new PayPalVaultRequest();

var googlePayRequest = new GooglePayRequest();
googlePayRequest.TransactionInfo = TransactionInfo.NewBuilder()
    .SetTotalPrice("10.0")
    .SetTotalPriceStatus(WalletConstants.TotalPriceStatusFinal)
    .SetCurrencyCode("USD")
    .Build();
googlePayRequest.BillingAddressRequired = true;
dropInRequest.GooglePayRequest = googlePayRequest;

dropInRequest.VenmoRequest = new VenmoRequest(VenmoPaymentMethodUsage.MultiUse);

dropInRequest.ThreeDSecureRequest = new ThreeDSecureRequest
{
    Amount = "10.0"
};

dropInClient = new DropInClient(this, "sandbox_tmxhyf7d_dcpspy2brwdjr3qn");
dropInClient.SetListener(this);

Open it up

dropInClient.LaunchDropIn(dropInRequest);

Plz follow official guide from Braintree here for further details.

Known issue

AndroidManifest.xml is incorrectly configured or another app defines the same browser switch url as this app. See https://developers.braintreepayments.com/guides/client-sdk/android/#browser-switch for the correct configuration

SOLUTION: Just remove special characters from your app's package name/id. like underscores and etc. (source)

Maintainer

This project is maintained by tuyen-vuduc in his spare time and/or when requested.

If you find this project is helpful and benefit your work/business, please give it a star, become a sponsor of the project and/or buy him a coffee.

"Buy Me A Coffee"

License

Braintree native libraries and its dependencies are licensed under their original owners' licenses. Please check out their main website for further information.

Braintree binding libraries for Android is released under the MIT license. See LICENSE for details.