Kebechet.Maui.MicrosoftClarity 1.0.0

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Kebechet.Maui.MicrosoftClarity --version 1.0.0                
NuGet\Install-Package Kebechet.Maui.MicrosoftClarity -Version 1.0.0                
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="Kebechet.Maui.MicrosoftClarity" Version="1.0.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Kebechet.Maui.MicrosoftClarity --version 1.0.0                
#r "nuget: Kebechet.Maui.MicrosoftClarity, 1.0.0"                
#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 Kebechet.Maui.MicrosoftClarity as a Cake Addin
#addin nuget:?package=Kebechet.Maui.MicrosoftClarity&version=1.0.0

// Install Kebechet.Maui.MicrosoftClarity as a Cake Tool
#tool nuget:?package=Kebechet.Maui.MicrosoftClarity&version=1.0.0                

"Buy Me A Coffee"

Maui.MicrosoftClarity

Usage

Firstly register package installer in your MauiProgram.cs

 builder.Services.AddMicrosoftClarity();

then in App.xaml.cs inject MicrosoftClarityService:

public partial class App : Application {
    private readonly MicrosoftClarityService _microsoftClarityService;

    public App(MicrosoftClarityService microsoftClarityService) {
        InitializeComponent();
        _microsoftClarityService = microsoftClarityService;
    }
}

and also override there method OnStart() to call _microsoftClarityService.Initialize with your project id.

protected override void OnStart() {
    _microsoftClarityService.Initialize("<MicrosoftClarityProjectIdHere>");

    base.OnStart();
}

⚠️ iOS Local debugging

Because of MAUI and VS bugs:

this won't work in iOS simulator(simulator from MAC), local device(iPhone connected to Windows) neither in remote device(iPhone connected to MAC)

Dummy classes

So that you dont have to specify platform for this package and it's calls, also Windows and MacCatalyst are added with dummy implementations. When you call one of their methods you will always get:

  • true for bool returns
  • new List<> for collections
  • string.Empty for string values

Exception behavior

  • Library will throw exceptions only in case developer did some mistake
  • in other cases, when there is some corrupted state it will return default value of that type.

Contributions

Feel free to create an issue or pull request. In case you would like to do massive changes in the package please firstly discuss them in the issue because otherwise there is high chance that such big PR would be rejected.

License

This repository is licensed with the MIT license.

Product Compatible and additional computed target framework versions.
.NET net8.0-android34.0 is compatible.  net8.0-ios17.2 is compatible.  net8.0-maccatalyst17.2 is compatible.  net8.0-windows10.0.19041 is compatible. 
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
1.0.1 33 7/15/2024
1.0.0 29 7/15/2024

Initial release