AXAiOSBindings 20.3.1
See the version list below for details.
dotnet add package AXAiOSBindings --version 20.3.1
NuGet\Install-Package AXAiOSBindings -Version 20.3.1
<PackageReference Include="AXAiOSBindings" Version="20.3.1" />
paket add AXAiOSBindings --version 20.3.1
#r "nuget: AXAiOSBindings, 20.3.1"
// Install AXAiOSBindings as a Cake Addin #addin nuget:?package=AXAiOSBindings&version=20.3.1 // Install AXAiOSBindings as a Cake Tool #tool nuget:?package=AXAiOSBindings&version=20.3.1
AXAiOSBindings
AXAiOSBindings is an iOS Xamarin package for App Experience Analytics that provides deep insights into the performance, user experience, crash, and log analytics of apps.
Get Started
Check out our documentation for more information about the features that the App Experience Analytics SDK collects from your app.
Requirements
- iOS 8.0 or higher
Integration
Adding the AXAiOSBindings package to your Xamarin Project
Add the AXAiOSBindings nuget package from the nuget.org. Follow the instructions given in Adding package to add the AXAiOSBindings.
Add the using AXAiOSBindings directive at the top of the App.xaml.cs file as shown below:
using Xamarin.Forms; using Xamarin.Forms.Xaml; using AXAiOSBindings; namespace <AppName> { public partial class App : Application { ... } }
Initialize the AXAiOSBindings sdk in
FinishedLaunching
method of the AppDelegate.cs file as shown below:public override bool FinishedLaunching(UIApplication app, NSDictionary options) { global::Xamarin.Forms.Forms.Init(); AXAiOSBindings.CAMDOReporter.InitializeSDKWithOptions(AXAiOSBindings.SDKOptions.SDKLogLevelVerbose, (_, __) => { }); LoadApplication(new App()); return base.FinishedLaunching(app, options); }
Drag & Drop the downloaded
xxx_camdo.plist
file into the Xamarin iOS Project, right-click on the file, click Build Action and then click BundleResource.Save and re-build your Xamarin application
---------------- x --------------------- x ----------------- x---------------- x --------------------- x ----------------- x
The generated app is now integrated with CA AXA. CA AXA can now track the performance, crash, and usage data of your app
Documentation
For more documentation and API references, go to our main website
Learn more about Target Frameworks and .NET Standard.
This package has 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.
First Release!