Tim Miller
Tim Miller
> There's plenty of code in my bug description that will help you reproduce this issue. Writing a repro project that can be deployed makes it easier to have a...
Can you also please try what @MartyIX suggested?
The newest net8.0 and net9.0 RC2 workloads support Xcode 16. So you most likely hit a regression either in your application or in MAUI—probably MAUI, if I were to guess....
https://github.com/drasticactions/whisper.cpp/tree/coreml-demo/examples/whisper.swiftui I have tried to update the sample to show how you can enable CoreML. In short, you need to: - Include the CoreML classes and headers - Add your...
https://github.com/dotnet/maui/pull/19909 I fixed this for BlazorWebView, but AFAIK, WebView, BlazorWebView, and HybridWebView are different controls with different implementations. My fix for the original one was for BlazorWebView. A similar thing...
@maxbrousseau Did you clean bin/obj before trying it to reference `SkiaSharp.NativeAssets.iOS`? That first error is that it's trying to use the 2.x libraries, so the native assets need to match...
@maxkatz6 This PR doesn't work with iOS right now, https://gist.github.com/drasticactions/e964b2445a55752b8618dc89359fc338 [MetalPlatformGraphics.TryCreate](https://github.com/AvaloniaUI/Avalonia/blob/2dc808f3e86b00289911acc81ab306964ca5cf2a/src/iOS/Avalonia.iOS/Metal/MetalPlatformGraphics.cs#L38) ~returns null~, leading to it being disposed, leading to a crash on startup. If you deploy the ControlCatalog.iOS project,...
With https://github.com/AvaloniaUI/Avalonia/pull/18981/commits/7f1a4d1ece8c46cd9d5e32fa79d9e6c4210b968d, it fixes the iOS/Catalyst SkiaSharp 3.x issue and I can use it there, For https://github.com/AvaloniaUI/Avalonia/issues/19028, I bumped my repro and the users repro to this version (on a...
@dhruvindudhat Your repro project is running an out of support version of .NET and .NET MAUI, https://github.com/dhruvindudhat/Demo/blob/main/Demo/Demo.csproj#L4-L5 You should upgrade to at least .NET 8.0 and try it there first.
Looking through the comments here, I am unsure if there is enough to say if this is a MAUI bug, or an issue with how you designed your application. That...