Xamarin creates and maintains Xamarin.iOS bindings for the Google APIs for iOS Libraries, including:
Active Libraries
Deprecated Libraries
Here's a table that shows in which global version is located each component of Firebase at this point of history:
Component Name | Component Version | Global Version |
---|---|---|
Firebase A/B Testing | 3.1.2.0 | 6.15.0 |
Firebase AdMob | 7.53.1.0 | 6.15.0 |
Firebase Analytics | 6.2.1.0 | 6.15.0 |
Firebase Auth | 6.4.2.0 | 6.15.0 |
Firebase Cloud Firestore | 1.4.2.3 | 6.5.0 |
Firebase Cloud Messaging | 4.1.1.3 | 6.5.0 |
Firebase Core | 6.6.0.0 | 6.15.0 |
Firebase Database | 6.0.0.2 | 6.5.0 |
Firebase Dynamic Links | 4.0.1.2 | 6.5.0 |
Firebase Instance ID | 4.3.0.0 | 6.15.0 |
Firebase MLKit | 0.13.0.3 | *5.13.0 |
Firebase MLKit Common | 0.13.0.2 | *5.13.0 |
Firebase MLKit Model Interpreter | 0.13.0.2 | *5.13.0 |
Firebase Performance Monitoring | 3.1.9.0 | 6.15.0 |
Firebase RemoteConfig | 4.4.6.0 | 6.15.0 |
Firebase Storage | 3.4.0.2 | 6.5.0 |
Google Sign-In | 5.0.2.0 | 6.15.0 |
Google Tag Manager | 7.1.2.2 | 6.5.0 |
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
You can either build all the libraries and samples in the repository from the root:
dotnet cake
Or, you can specify the components and its dependencies to be build by using the --names=Key1,Key2,...
:
// Firebase keys
Firebase.ABTesting
Firebase.AdMob
Firebase.Analytics
Firebase.Auth
Firebase.CloudFirestore
Firebase.CloudMessaging
Firebase.Core
Firebase.Crashlytics
Firebase.Database
Firebase.DynamicLinks
Firebase.InstanceID
Firebase.MLKit
Firebase.MLKit.Common
Firebase.MLKit.ModelInterpreter
Firebase.PerformanceMonitoring
Firebase.RemoteConfig
Firebase.Storage
// Google keys
Google.Analytics
Google.Appindexing
Google.Cast
Google.Core
Google.InstanceID
Google.Maps
Google.MobileAds
Google.Places
Google.SignIn
Google.TagManager
The following targets can be specified using the --target=<target-name>
:
libs
builds the class library bindings (depends onexternals
)externals
downloads and builds the external dependenciessamples
builds all of the samples (depends onlibs
)nuget
builds the nuget packages (depends onlibs
)clean
cleans 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=externals
After the externals are downloaded and built, the .sln
files should compile in your IDE.
The license for this repository is specified in License.md
You will need to complete a Contribution License Agreement before your pull request can be accepted. You can complete the CLA by going through the steps at https://cla2.dotnetfoundation.org/.
This project is part of the .NET Foundation