Plugins for Xamarin
Перейти к файлу
moljac 52805535d5
additonal skip assemblies for signing
2021-05-28 14:23:32 +02:00
.ci dotnet and dotnetStable (for .NET6 tests) 2021-05-27 16:35:09 +02:00
Android Merge branch 'main' into ThreeTenAbp-1.3.1-targetFramework 2021-05-27 12:05:40 +02:00
Mac/ITSwitch Create a script to build from directories (#708) 2020-08-13 21:09:53 +02:00
Util tool version bump 2021-05-27 17:54:24 +02:00
XPlat Shopify iOS make build green - needs love to fix bindings 2021-05-09 13:45:37 +02:00
iOS Fix leak in EN for iOS (#1075) 2021-01-13 14:55:49 +02:00
.gitignore [Guava] Multi-target for .NET 6 and MonoAndroid90 (#1111) 2021-05-26 08:27:43 -05:00
LICENSE Add the AndroidManifest.xml merger (#648) 2019-08-26 16:38:12 +02:00
README.md some bindings that need some love - obsoleted and commented out in manifest.yaml 2021-05-10 15:07:25 +02:00
SECURITY.md Create SECURITY.md 2021-05-24 15:38:49 -05:00
SignList.xml additonal skip assemblies for signing 2021-05-28 14:23:32 +02:00
Support.md Create Support.md (#1086) 2021-02-02 15:14:12 +02:00
azure-pipelines.yml [Guava] Multi-target for .NET 6 and MonoAndroid90 (#1111) 2021-05-26 08:27:43 -05:00
build.cake We can't use Cake v1.0.0 as there are breaks (#1099) 2021-02-25 00:35:41 +02:00
common.cake [iOS][SDWebImage] Added flag to enable bitcode on tvos 2019-10-01 20:01:59 -05:00
global.json [Guava] Multi-target for .NET 6 and MonoAndroid90 (#1111) 2021-05-26 08:27:43 -05:00
manifest.yaml Merge branch 'KotlinxCoroutines-1.4.1' of https://github.com/antonioseric/XamarinComponents into antonioseric-KotlinxCoroutines-1.4.1 2021-05-11 21:38:03 +02:00

README.md

Open Source Components for Xamarin

GitHub License contributions welcome GitHub contributors

Open Source Components for Xamarin are a collection of open source components (including bindings and plugins) created by Xamarin and others in the community.

Status

Some of the bindings are obsoleted and commented out in the manifest.yaml. The reasons vary from binaries being removed from JCenter/BinTray/JFrog, to stale code or script API used in cake scripts.

Obsoleted bindings (might need some love for update):

  • Shopify
  • OpenId
  • AndroidThings
  • AnimatedCircleLoadingView

Building

Prerequisites

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.tool

When building on macOS, you may also need to install CocoaPods:

# Homebrew
brew install cocoapods

# Ruby Gems
gem install cocoapods

Compiling

You 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 cake

The 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=nuget

Or, you can navigate to the folder and run it from there:

cd Android/ARCore
dotnet cake --target=nuget

The following targets can be specified using the --target=<target-name>:

  • libs builds the class library bindings (depends on externals)
  • externals downloads and builds the external dependencies
  • samples builds all of the samples (depends on libs)
  • nuget builds the nuget packages (depends on libs)
  • clean cleans up everything

Working in Visual Studio

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=externals

After the externals are downloaded and built, the .sln files should compile in your IDE.


Support & Getting Help

The following libraries are supported.

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

To get help, visit the Xamarin area of Microsoft Q&A.

Xamarin.Essentials

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.