MvvX.Plugins.AppCenter 2022.10119.0-preview-5

This is a prerelease version of MvvX.Plugins.AppCenter.
dotnet add package MvvX.Plugins.AppCenter --version 2022.10119.0-preview-5
                    
NuGet\Install-Package MvvX.Plugins.AppCenter -Version 2022.10119.0-preview-5
                    
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="MvvX.Plugins.AppCenter" Version="2022.10119.0-preview-5" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MvvX.Plugins.AppCenter" Version="2022.10119.0-preview-5" />
                    
Directory.Packages.props
<PackageReference Include="MvvX.Plugins.AppCenter" />
                    
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 MvvX.Plugins.AppCenter --version 2022.10119.0-preview-5
                    
#r "nuget: MvvX.Plugins.AppCenter, 2022.10119.0-preview-5"
                    
#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.
#addin nuget:?package=MvvX.Plugins.AppCenter&version=2022.10119.0-preview-5&prerelease
                    
Install MvvX.Plugins.AppCenter as a Cake Addin
#tool nuget:?package=MvvX.Plugins.AppCenter&version=2022.10119.0-preview-5&prerelease
                    
Install MvvX.Plugins.AppCenter as a Cake Tool

MvvX.AppCenter

Use AppCenter SDK on a MvvmCross application (https://www.mvvmcross.com/).

Why using a plugin as AppCenter is compatible with .net standard ? With a plugin, you can use an interface (IAppCenterClient) in order to use AppCenter functions

=========

IC

Quality Gate Status .NET NuGet package

Onboarding Instructions

Installation

  1. Add nuget package:

    Install-Package MvvX.Plugins.AppCenter

  2. In App.xaml.cs file add the following line in usage declaration section: <pre>MvvX.Plugins.AppCenter;</pre>

  3. In App.xaml.cs file add the following line in App class constructor:

    var appCenterClientId = "Set AppCenter Id here";
    var buildVersion = "Set your application build version here"; 
    // ex : Assembly.GetExecutingAssembly().GetName().Version.ToString()
    var appCenterClient = Mvx.Resolve<IAppCenterClient>();
    appCenterClient.Configure(appCenterClientId, 
                                buildVersion,
                                true,
                                true,
                                true,
                                null,
                                null);

Attach file at each crash report

You can define a default file that will be attached to an Exception report when an exception occured in the application. To do it, set the full file path in the Configure method

    var fileToUploadSamplePath = "c:\file.log";
    var appCenterClient = Mvx.Resolve<IAppCenterClient>();
    appCenterClient.Configure(appCenterClientId, 
                                buildVersion,
                                true,
                                true,
                                true,
                                fileToUploadSamplePath,
                                null);

In this example, when a crash occured, the file "c:\file.log" will be attached to the exception report.

Attach additional file at each crash report

Sometimes you need to attach more than a unique log file.

For this case, you can define additional file path to the Configure method. All files defined here will be zipped and attached to an Exception report when an exception occured in the application.

    var otherfile1 = "c:\temp\otherFile.log";
    var otherfile2 = "c:\temp\otherFile2.log";
    var appCenterClient = Mvx.Resolve<IAppCenterClient>();
    appCenterClient.Configure(appCenterClientId, 
                                buildVersion,
                                true,
                                true,
                                true,
                                null,
                                new List<string>()
                                {
                                    otherfile1,
                                    otherfile2
                                });

In this example, when a crash occured, a zipped file (named "AdditionalContent.zip") will be attached to the exception report.

Support / Contribute

If you have any questions, problems or suggestions, create an issue or fork the project and create a Pull Request.

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
2022.10119.0-preview-5 548 1/2/2023
2022.10119.0-preview-4 119 11/22/2022
2022.10118.2 1,019 1/18/2022
2022.10118.1-alpha 575 1/18/2022
2021.10914.3 789 9/14/2021
2021.10914.2-alpha 613 9/14/2021
2021.10914.1-alpha 637 9/14/2021
2021.10314.5 886 3/14/2021
2021.10314.4-alpha 635 3/14/2021
2021.10314.3 927 3/13/2021
2020.10902.2 912 9/2/2020
2020.10901.1 918 9/1/2020
2020.10727.1-alpha 840 7/27/2020
2020.10716.1-alpha 781 7/16/2020
2020.10530.2 1,003 5/29/2020
2020.10530.1-alpha 838 5/29/2020
2020.10529.2 885 5/29/2020
2020.10529.1-alpha 766 5/29/2020
2020.10426.3 882 4/26/2020
2020.10426.2-alpha 780 4/26/2020
2020.10426.1-alpha 753 4/26/2020
2020.10104.2 11,563 1/4/2020
2019.11104.2 1,859 11/4/2019
2019.11030.1 984 10/30/2019
2019.11003.3-alpha 978 10/3/2019
2019.11003.2 999 10/3/2019
2019.11003.2-alpha 802 10/3/2019
2019.11003.1 951 10/3/2019
2019.10918.2 2,710 9/18/2019
2019.10916.2 1,033 9/16/2019
2019.10916.1 990 9/16/2019
2019.10823.2 1,862 8/23/2019
2019.10823.1 947 8/23/2019
2019.10720.1 1,021 7/20/2019
2019.10719.1 997 7/19/2019
2019.10718.4 979 7/18/2019
2019.10718.3 1,019 7/18/2019
2019.10718.2 956 7/18/2019
2019.10718.1 987 7/18/2019
2019.10717.2 1,010 7/17/2019