Wrapper for Microsoft Clarity for mobile
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();
}
Because of MAUI and VS bugs:
- xamarin/xamarin-macios#19229
- https://developercommunity.visualstudio.com/t/MAUI---Cannot-create-native-types-when-d/10180586
- potential workaround: dotnet/maui#10800 (comment)
it is not possible to run your app with hot-restart(direct local iOS deploy from VS for Windows)
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 returnsnew List<>
for collectionsstring.Empty
for string values
- 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.
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.
This repository is licensed with the MIT license.