AXAiOSBindings_MAUI 25.3.1
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package AXAiOSBindings_MAUI --version 25.3.1
NuGet\Install-Package AXAiOSBindings_MAUI -Version 25.3.1
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="AXAiOSBindings_MAUI" Version="25.3.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AXAiOSBindings_MAUI --version 25.3.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: AXAiOSBindings_MAUI, 25.3.1"
#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.
// Install AXAiOSBindings_MAUI as a Cake Addin #addin nuget:?package=AXAiOSBindings_MAUI&version=25.3.1 // Install AXAiOSBindings_MAUI as a Cake Tool #tool nuget:?package=AXAiOSBindings_MAUI&version=25.3.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Using AXA Bindings Library in .NET MAUI apps
Installation
- Open your project to add the
AXAiOSBindings_MAUI.dll
package. - Right-click on Dependencies, select Manage NuGet Packages, and search the AXAiOSBindings_MAUI.dll file from the list in the Nuget packages window under the nuget.org Package source and then click Add Package.
- Add the
<app_name>_camdo.plist
file to your project as a bundle resource For example:<ItemGroup> <BundleResource Include="xxx_camdo.plist" /> </ItemGroup>
Initialising the SDK in your Source Code
Initialise the CAMobileAppAnalytics SDK in MauiProgram.cs in iOS FinishedLaunching event
- Import AXAiOSBindings_MAUI
#if IOS using AXAiOSBindings_MAUI; #endif
- Initialise the SDK
.ConfigureLifecycleEvents(events => { #if IOS events.AddiOS(iOS => iOS.FinishedLaunching((app, launchOptions) => { AXAiOSBindings_MAUI.CAMDOReporter.InitializeSDKWithOptions(AXAiOSBindings_MAUI.SDKOptions.SDKLogLevelVerbose, (_, __) => {LogEvent("SDK initialized successfully"); }); return true; })); #endif
Usage
Use AXAiOSBindings_MAUI.CAMDOReporter
to call custom APIs in your project.
For example:
AXAiOSBindings_MAUI.CAMDOReporter.SetCustomerId("Test");
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0-ios16.1 is compatible. net8.0-ios was computed. net9.0-ios was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net7.0-ios16.1
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.