Naxam creates and maintains Xamarin.Android bindings for Braintree Drop-In library for Android, including:
- drop-in
- braintree-core
- card
- google-pay
- paypal
- three-d-secure
- union-pay
- venmo
- data-collector
- shared-utils
- browser-switch
- card-form
- cardinalmobilesdk
The build script for this project uses Cake. To run the build, you can use one of the bootstrapper files either for Mac or Windows (experimental support only):
The bootstrapper script will automatically download Cake.exe and all the required tools and files into the ./tools/
folder.
Required dotnet core tools:
- binderator
Optional dotnet core tools:
- cake
To update all tools:
dotnet tool uninstall -g Cake.Tool
dotnet tool install -g Cake.Tool
dotnet tool uninstall -g Xamarin.AndroidBinderator.Tool
dotnet tool install -g Xamarin.AndroidBinderator.Tool
The following targets can be specified:
ci
builds the kitchen sink - what we run in CIlibs
builds the class library bindings (depends onbinderate
)binderate
downloads the external dependencies and generates folder structuresamples
builds all of the samples (depends onlibs
)nuget
builds the nuget packages (depends onlibs
)clean
cleans up everything
NOTE: The binderate
build task may take awhile to run as it downloads several large dependencies.
You may want to consider passing --verbosity diagnostic
(or -Verbosity diagnostic
on Windows) to the bootstrapper to enable more verbose output, including downloading progress.
Mac:
dotnet cake --target=binderate && dotnet cake --target=libs
Optionally run:
dotnet cake --target=clean
before the build.
To build nuget packages, samples and API diff:
Mac:
dotnet cake --target=nuget && dotnet cake --target=samples && dotnet cake --target=diff
Before the .sln
files will compile in Visual Studio or Xamarin Studio, the external dependencies need to be downloaded. This can be done by running the dotnet cake --target=externals
. After the externals are setup, the .sln
files should compile in an IDE.