Skip to content

MAUI Performance Issue #4439

@reid-kirkpatrick

Description

@reid-kirkpatrick

Package

Sentry.Maui

.NET Flavor

.NET

.NET Version

9.0.203

OS

iOS & Android

OS Version

All? Tested on 17.7.9, 18.0.1 & 18.5

Development Environment

Visual Studio v17.x

SDK Version

5.7.0-beta.0

Self-Hosted Sentry Version

No response

Workload Versions

[ios]
   Installation Source: SDK 9.0.200, VS 17.13.35931.197
   Manifest Version:    18.4.9288/9.0.100

[android]
   Installation Source: SDK 9.0.200, VS 17.13.35931.197
   Manifest Version:    35.0.61/9.0.100

UseSentry or SentrySdk.Init call

		builder.UseSentry(options =>
		{
			options.AddEventProcessor(new SessionLogEventProcessor());

			options.TracesSampleRate = 0.01;
			options.ProfilesSampleRate = 0.01;

#if ANDROID
			options.Dsn = "***";

			// MT-117470
			options.Android.SuppressSegfaults = true;
#elif IOS
			options.Dsn = "***";
#elif WINDOWS
			options.Dsn = "***";

			var applicationVersion = AppInfo.VersionString;
			applicationVersion = applicationVersion[..applicationVersion.LastIndexOf('.')];
			options.Release = $"{AppInfo.PackageName}@{applicationVersion}+{AppInfo.BuildString}";
#endif
		});
#endif

Steps to Reproduce

I'm working on trying to put together a reproduction project, but there is an issue when navigating back at a specific point in our app. The issue is significantly more pronounced on iOS

Expected Result

In previous versions the previous page was completely responsive without delay

Actual Result

As of 5.7.0-beta.0 the previous page becomes unresponsive for a few seconds

Metadata

Metadata

Labels

.NETPull requests that update .net codeBugSomething isn't working

Projects

Status

Done

Status

No status

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions