Open Source Components for Xamarin are a collection of open source components (including bindings and plugins) created by Xamarin and others in the community.
Before building the libraries and samples in this repository, you will need to install .NET Core and the Cake .NET Core Tool:
dotnet tool install -g cake.toolWhen building on macOS, you may also need to install CocoaPods:
# Homebrew
brew install cocoapods
# Ruby Gems
gem install cocoapodsYou can either build all the libraries and samples in the repository from the root:
dotnet cake --name=<name-from-manifest>Or, you can build each component separately:
cd <path-to-component>
dotnet cakeThe name of each component can be found in the manifest.yaml. For example, to build the ARCore component, you can either start the build from the root:
dotnet cake --name=ARCore --target=nugetOr, you can navigate to the folder and run it from there:
cd Android/ARCore
dotnet cake --target=nugetThe following targets can be specified using the --target=<target-name>:
libsbuilds the class library bindings (depends onexternals)externalsdownloads and builds the external dependenciessamplesbuilds all of the samples (depends onlibs)nugetbuilds the nuget packages (depends onlibs)cleancleans up everything
Before the .sln files will compile in the IDEs, the external dependencies need to be downloaded. This can be done by running the externals target:
dotnet cake --target=externalsAfter the externals are downloaded and built, the .sln files should compile in your IDE.
Xamarin Supported Open Source components are a collection of Xamarin built bindings and libraries.
| Name | Description | Source |
|---|---|---|
| Android Support Libraries | Bindings for Google's Android Support Libraries | GitHub |
| Google Play Services Client Libraries | Bindings for Google's Play Services Client Libraries | GitHub |
| Google API's for iOS | Bindings for Google's API's for iOS Libraries | GitHub |
| Facebook SDK's | Bindings for Facebook's iOS & Android SDK's | GitHub |
| Xamarin.Auth | Cross-platform API for authenticating users and storing their accounts. | GitHub |
Xamarin.Essentials gives developers essential cross-platform APIs for their mobile applications. Xamarin.Essentials exposes over 60 native APIs in a single cross-platform package for developers to consume in their iOS, Android, UWP, or Xamarin.Forms application. Browse through the documentation on how to get started today.
The repository for Xamarin.Essentials can be found at https://github.com/xamarin/Essentials. If you have any suggestions or feature requests, or if you find any issues, please open a new issue.