AXAiOSBindings 20.3.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package AXAiOSBindings --version 20.3.1                
NuGet\Install-Package AXAiOSBindings -Version 20.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" Version="20.3.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AXAiOSBindings --version 20.3.1                
#r "nuget: AXAiOSBindings, 20.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 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

  1. iOS 8.0 or higher

Integration

Adding the AXAiOSBindings package to your Xamarin Project

  1. Add the AXAiOSBindings nuget package from the nuget.org. Follow the instructions given in Adding package to add the AXAiOSBindings.

  2. 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
    	{
     	  	...
    	}
     }
    
  3. 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);
     }
    
  4. 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.

  5. 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

There are no supported framework assets in this package.

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.

Version Downloads Last updated
2023.7.2 241 7/20/2023
2023.7.1 186 7/19/2023
24.9.1 135 9/3/2024
24.7.2 101 7/9/2024
24.7.1 103 6/21/2024
24.5.1 91 5/9/2024
24.1.1.1 80 5/3/2024
20.3.1 754 4/6/2020
1.0.0 523 4/6/2020

First Release!