AdamE.Firebase.iOS.Crashlytics 12.10.0

dotnet add package AdamE.Firebase.iOS.Crashlytics --version 12.10.0
                    
NuGet\Install-Package AdamE.Firebase.iOS.Crashlytics -Version 12.10.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AdamE.Firebase.iOS.Crashlytics" Version="12.10.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AdamE.Firebase.iOS.Crashlytics" Version="12.10.0" />
                    
Directory.Packages.props
<PackageReference Include="AdamE.Firebase.iOS.Crashlytics" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add AdamE.Firebase.iOS.Crashlytics --version 12.10.0
                    
#r "nuget: AdamE.Firebase.iOS.Crashlytics, 12.10.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package AdamE.Firebase.iOS.Crashlytics@12.10.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=AdamE.Firebase.iOS.Crashlytics&version=12.10.0
                    
Install as a Cake Addin
#tool nuget:?package=AdamE.Firebase.iOS.Crashlytics&version=12.10.0
                    
Install as a Cake Tool

AdamE.Firebase.iOS.Crashlytics

.NET bindings for Firebase Crashlytics on Apple platforms.

Scope

Native crash reporting, custom key, log, user identifier, and non-fatal error APIs exposed by the Firebase Apple SDK.

These packages are thin bindings over the native Firebase Apple SDK. The native documentation is the source of truth for product behavior, Firebase console setup, quotas, policy requirements, and feature workflows.

Native Documentation

Package

  • Package ID: AdamE.Firebase.iOS.Crashlytics
  • Managed namespace: Firebase.Crashlytics

Supported target frameworks include:

  • net9.0-ios
  • net10.0-ios
  • net9.0-maccatalyst
  • net10.0-maccatalyst

When multi-targeting, condition package references so they restore only for Apple targets:

<ItemGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios' Or $([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">
  <PackageReference Include="AdamE.Firebase.iOS.Crashlytics" Version="x.y.z" />
</ItemGroup>

Installation

dotnet add package AdamE.Firebase.iOS.Crashlytics

Binding Notes

Use the official Firebase Apple docs for setup and usage. In .NET, call the equivalent APIs from the managed namespace listed above. Keep app-specific Firebase configuration, such as GoogleService-Info.plist, in the application project.

Most Firebase feature packages require AdamE.Firebase.iOS.Core and app startup should call Firebase.Core.App.Configure() before feature APIs are used. This is the .NET binding for native FirebaseApp.configure().

Crashlytics is native crash reporting, not a complete managed .NET exception-reporting replacement. On .NET 8 iOS projects, the top-level README includes an _ExportSymbolsExplicitly workaround for missing symbol/export issues.

There is no separate Crashlytics.Configure() call in the current binding surface. After Firebase is configured, use Firebase.Crashlytics.Crashlytics.SharedInstance for Crashlytics APIs such as Log(...), SetCustomValue(...), SetUserId(...), RecordError(...), and RecordExceptionModel(...).

Runtime collection controls are exposed through Crashlytics.SharedInstance.SetCrashlyticsCollectionEnabled(...), IsCrashlyticsCollectionEnabled, CheckForUnsentReports(...), SendUnsentReports(), and DeleteUnsentReports(). Use the native Crashlytics docs as the source of truth for the matching plist keys and consent behavior.

The NuGet package also ships MSBuild targets for Firebase dSYM symbol upload. Release app builds enable symbol upload by default. Set these properties in the consuming app project file, or in Directory.Build.targets for a shared repo policy.

To disable symbol upload:

<PropertyGroup>
  <FirebaseCrashlyticsUploadSymbolsEnabled>false</FirebaseCrashlyticsUploadSymbolsEnabled>
</PropertyGroup>

To keep upload enabled but fail the build if upload fails:

<PropertyGroup>
  <FirebaseCrashlyticsUploadSymbolsContinueOnError>false</FirebaseCrashlyticsUploadSymbolsContinueOnError>
</PropertyGroup>

For one-off builds, pass the same values as command-line MSBuild properties, such as dotnet build -c Release /p:FirebaseCrashlyticsUploadSymbolsEnabled=false. Prefer the app .csproj, Directory.Build.targets, or command-line properties over Directory.Build.props so the value is applied after NuGet package props set their defaults. The upload target expects the app bundle to contain GoogleService-Info.plist.

Version Alignment

Firebase Apple SDKs are packaged as native xcframeworks. Applications should pin package versions intentionally and keep all AdamE.Firebase.iOS.* packages on the same major/minor Firebase line.

Avoid mixing unrelated Firebase binding package sets or mismatched Firebase native SDK lines in one application. That can cause duplicate symbols, linker failures, runtime loading failures, or undefined native SDK behavior.

Repository

Product Compatible and additional computed target framework versions.
.NET net9.0-ios18.0 is compatible.  net9.0-maccatalyst18.0 is compatible.  net10.0-ios was computed.  net10.0-ios26.0 is compatible.  net10.0-maccatalyst was computed.  net10.0-maccatalyst26.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on AdamE.Firebase.iOS.Crashlytics:

Package Downloads
Plugin.Firebase.Crashlytics

The plugin includes cross-platform APIs for Firebase Crashlytics.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on AdamE.Firebase.iOS.Crashlytics:

Repository Stars
TobiasBuchholz/Plugin.Firebase
Wrapper around the native Android and iOS Firebase Xamarin SDKs
Version Downloads Last Updated
12.10.0 44 4/21/2026
12.9.0 48 4/21/2026
12.8.0 46 4/20/2026
12.7.0 58 4/19/2026
12.6.0 52 4/18/2026
12.5.0.4 27,195 12/24/2025
12.5.0.3 223 12/24/2025
12.5.0.2 228 12/24/2025
12.5.0.1 1,395 12/14/2025
12.5.0 958 12/11/2025
12.4.0 4,772 10/30/2025
12.3.0 4,977 9/21/2025
12.2.0 325 9/20/2025
12.1.0 383 9/19/2025
12.0.0 972 9/12/2025
11.15.0 459 9/12/2025
11.14.0 794 9/7/2025
11.13.0 246 9/7/2025
11.12.0 214 9/6/2025
11.11.0 211 9/6/2025
Loading failed