Skip to content
This repository has been archived by the owner on Jul 16, 2023. It is now read-only.

Latest commit

 

History

History
81 lines (56 loc) · 3.34 KB

BINDING.md

File metadata and controls

81 lines (56 loc) · 3.34 KB

Xamarin.Android binding libraries for Braintree Android SDK

Naxam creates and maintains Xamarin.Android bindings for Braintree Drop-In library for Android, including:

Building

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 CI
  • libs builds the class library bindings (depends on binderate)
  • binderate downloads the external dependencies and generates folder structure
  • samples builds all of the samples (depends on libs)
  • nuget builds the nuget packages (depends on libs)
  • 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

Working in Visual Studio / Xamarin Studio

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.

Issues