AdamE.Firebase.iOS.CloudFunctions 12.6.0
AdamE.Firebase.iOS.CloudFunctions
.NET bindings for Cloud Functions for Firebase on Apple platforms, for use from .NET iOS and Mac Catalyst apps.
What this package provides
This package binds the Cloud Functions for Firebase Apple SDK surface exposed in the Firebase.CloudFunctions namespace. It provides access to CloudFunctions, callable HTTPS functions, callable results, region and custom domain selection, and emulator configuration.
Use this package when you need:
- callable Cloud Functions access from C#
- callable function invocation with
HttpsCallable.Call - region-specific or custom-domain function clients
- local emulator configuration for callable functions
Most apps using this package also reference AdamE.Firebase.iOS.Core for Firebase app initialization.
Official Firebase documentation comes first
These packages are thin .NET bindings over the official Firebase Apple SDKs.
Use the official Firebase documentation as the starting point for:
- Firebase configuration and platform setup
- feature usage and behavioral guidance
- troubleshooting and best practices
These bindings primarily:
expose the native Firebase Apple SDK APIs to .NET through C#
deliver the packaged native Firebase SDK artifacts through NuGet
Firebase documentation: https://firebase.google.com/docs
Firebase Apple platform setup: https://firebase.google.com/docs/ios/setup
Cloud Functions for Firebase documentation: https://firebase.google.com/docs/functions
Supported target frameworks
This package is intended for Apple platform TFMs such as:
net9.0-iosnet10.0-iosnet9.0-maccatalystnet10.0-maccatalyst
When multi-targeting, condition the package reference so it only restores for Apple targets.
<ItemGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios' Or $([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">
<PackageReference Include="AdamE.Firebase.iOS.CloudFunctions" Version="12.6.0" />
</ItemGroup>
Installation
dotnet add package AdamE.Firebase.iOS.CloudFunctions
Basic usage
This package does not itself perform Firebase app initialization; call Firebase.Core.App.Configure() from the app before using Firebase feature APIs.
using System;
using Firebase.CloudFunctions;
using Firebase.Core;
App.Configure();
var functions = CloudFunctions.DefaultInstance;
var callable = functions.HttpsCallable("helloWorld");
callable.TimeoutInterval = 30;
callable.Call((result, error) =>
{
if (error is not null)
{
Console.WriteLine(error.LocalizedDescription);
return;
}
Console.WriteLine(result?.Data);
});
Common companion packages
AdamE.Firebase.iOS.Core- Firebase app initialization.AdamE.Firebase.iOS.Auth- commonly used when callable functions depend on Firebase Authentication context.
Firebase app configuration
Firebase apps commonly require app-specific configuration from your own Firebase project, such as GoogleService-Info.plist.
Keep app-specific Firebase configuration in the application project or sample app, not in reusable library projects.
If the official Firebase docs for this feature require additional setup, follow those docs first.
Package versioning rules (important)
Because Firebase Apple SDKs are packaged as native xcframeworks and distributed here through NuGet, consumers should explicitly pin package versions.
Due to packaging differences between CocoaPods and NuGet, it is highly recommended that applications follow these rules:
- Keep the MAJOR.MINOR version aligned across all Firebase packages in the app, for example
12.6.*.*. - Then use the latest available PATCH.REVISION for each individual package.
Example:
<ItemGroup>
<PackageReference Include="AdamE.Firebase.iOS.Core" Version="12.6.0.3" />
<PackageReference Include="AdamE.Firebase.iOS.Auth" Version="12.6.0.2" />
<PackageReference Include="AdamE.Firebase.iOS.CloudFirestore" Version="12.6.0.5" />
</ItemGroup>
Avoid mixing mismatched Firebase package lines such as 12.6.x.x with 12.5.x.x, or 12.x.x.x with 11.x.x.x. Doing so can lead to native dependency conflicts, duplicate symbols, runtime failures, or other undefined behavior.
Notes on native dependency conflicts
Google and Firebase Apple SDKs share native dependencies. Avoid mixing multiple unrelated binding packages that embed overlapping Google/Firebase native SDK binaries in the same app unless you are certain they are compatible.
API surface notes
The public namespace is Firebase.CloudFunctions. API names closely mirror the native Cloud Functions for Firebase SDK surface and expose Apple-native concepts such as NSObject, NSError, and callback-based completion handlers.
Repository / support
- Repository: https://github.com/AdamEssenmacher/GoogleApisForiOSComponents
- Issues: https://github.com/AdamEssenmacher/GoogleApisForiOSComponents/issues
Support the project
Keeping Firebase Apple bindings current for .NET requires ongoing work across SDK updates, native dependency changes, and API surface maintenance.
If this package is valuable in your app or organization, sponsorship helps support continued maintenance and updates.
- GitHub Sponsors: https://github.com/sponsors/AdamEssenmacher
Showing the top 20 packages that depend on AdamE.Firebase.iOS.CloudFunctions.
| Packages | Downloads |
|---|---|
|
Plugin.Firebase.Functions
The plugin includes cross-platform APIs for Firebase Functions.
|
1 |
.NET 9.0
- AdamE.Firebase.iOS.Core (>= 12.6.0)
- AdamE.Google.iOS.GTMSessionFetcher (>= 3.5.0 && < 5.0.0)
.NET 9.0
- AdamE.Firebase.iOS.Core (>= 12.6.0)
- AdamE.Google.iOS.GTMSessionFetcher (>= 3.5.0 && < 5.0.0)
.NET 10.0
- AdamE.Firebase.iOS.Core (>= 12.6.0)
- AdamE.Google.iOS.GTMSessionFetcher (>= 3.5.0 && < 5.0.0)
.NET 10.0
- AdamE.Firebase.iOS.Core (>= 12.6.0)
- AdamE.Google.iOS.GTMSessionFetcher (>= 3.5.0 && < 5.0.0)
| Version | Downloads | Last updated |
|---|---|---|
| 12.9.0 | 0 | 04/21/2026 |
| 12.8.0 | 0 | 04/20/2026 |
| 12.7.0 | 0 | 04/19/2026 |
| 12.6.0 | 1 | 04/20/2026 |
| 12.5.0.4 | 1 | 04/20/2026 |
| 12.5.0.3 | 0 | 04/20/2026 |
| 12.5.0.2 | 1 | 04/20/2026 |
| 12.5.0.1 | 1 | 04/20/2026 |
| 12.5.0 | 1 | 04/20/2026 |
| 12.4.0 | 1 | 04/20/2026 |
| 12.3.0 | 1 | 04/20/2026 |
| 12.2.0 | 0 | 09/20/2025 |
| 12.1.0 | 1 | 04/20/2026 |
| 12.0.0 | 0 | 09/12/2025 |
| 11.15.0 | 1 | 04/20/2026 |
| 11.14.0 | 1 | 04/20/2026 |
| 11.13.0 | 1 | 04/20/2026 |
| 11.12.0 | 1 | 04/20/2026 |
| 11.11.0 | 2 | 04/20/2026 |
| 11.10.0.2 | 1 | 04/20/2026 |
| 11.10.0.1 | 1 | 04/20/2026 |
| 11.10.0 | 1 | 04/20/2026 |
| 11.9.0 | 0 | 04/01/2025 |
| 11.8.0 | 0 | 02/04/2025 |
| 11.7.0 | 1 | 04/20/2026 |
| 11.6.0 | 1 | 04/20/2026 |
| 11.5.0 | 1 | 04/20/2026 |
| 11.4.0.1 | 1 | 04/20/2026 |
| 11.4.0 | 1 | 04/20/2026 |
| 11.3.0 | 0 | 12/19/2024 |
| 11.2.0 | 1 | 04/20/2026 |
| 11.1.0 | 2 | 04/20/2026 |
| 11.0.0 | 1 | 04/20/2026 |
| 10.29.0.3 | 1 | 04/20/2026 |
| 10.29.0.1 | 1 | 04/20/2026 |
| 10.29.0 | 1 | 04/20/2026 |
| 10.28.0 | 1 | 04/20/2026 |
| 10.27.0 | 0 | 10/13/2024 |
| 10.25.0.1 | 1 | 04/20/2026 |
| 10.25.0 | 1 | 04/20/2026 |
| 10.24.0.3 | 1 | 04/20/2026 |
| 10.24.0.2 | 1 | 04/20/2026 |
| 10.24.0 | 1 | 04/20/2026 |
| 10.23.0 | 0 | 04/29/2024 |
| 10.22.0 | 1 | 04/20/2026 |
| 10.21.0 | 1 | 04/20/2026 |
| 10.20.0 | 1 | 04/20/2026 |
| 10.19.0 | 1 | 04/20/2026 |
| 10.18.0 | 1 | 04/20/2026 |
| 10.17.0 | 1 | 04/20/2026 |
| 10.16.0 | 0 | 04/12/2024 |