Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
miquelbeltran committed Nov 1, 2024
1 parent 7e08972 commit 3c67f47
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/Raygun.Blazor.Maui/Extensions/MauiExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ public static class MauiExtensions
{
public static MauiAppBuilder UseRaygunBlazorMaui(this MauiAppBuilder builder, string configSectionName = "Raygun")
{
#if ANDROID
#if ANDROID
// Replace default AssemblyReaderProvider with the Android Assembly reader from Raygun4Maui
ErrorDetails.AssemblyReaderProvider = AndroidUtilities.CreateAssemblyReader()!.TryGetReader;
#endif
#endif

builder.Services.Configure<RaygunSettings>(builder.Configuration.GetSection(configSectionName));
builder.Services.AddScoped<RaygunBrowserInterop>();
builder.Services.AddScoped<IWindowService, WindowService>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ internal static class AndroidUtilities
// Not a valid android archive so nothing to return
return null;
}

// Open the apk file, and see if it has a manifest, if it does,
// we are using the new assembly store method,
// else it's just a normal zip with assemblies as archive entries
Expand Down

0 comments on commit 3c67f47

Please sign in to comment.