SIGABRT Microsoft_Maui_Platform_PageViewController

Jassim Al Rahma 1,571 Reputation points
2022-09-11T18:57:08.553+00:00

Hi,

I have the below code in MAUI but I am getting this error when

https://sentry.io/share/issue/99ac3148fb634c559a5fee99e37429c3/

Here is my code:

async void cameraBarcodeReaderView_BarcodesDetected(System.Object sender, ZXing.Net.Maui.BarcodeDetectionEventArgs e)  
{  
    try  
    {  
        Dispatcher.Dispatch(() =>  
        {  
            taqyeem_url = OneId.Current.Decrypt(e.Results[0].Value, "xxxxxxxx");  
  
            cameraBarcodeReaderView.IsDetecting = false;  
        });  
  
        uri = new Uri(taqyeem_url);  
  
        var query = HttpUtility.ParseQueryString(uri.Query);  
    }  
    catch (Exception ex)  
    {  
        await DisplayAlert("Error", ex.Message, "OK");  
    }  
}  
.NET MAUI
.NET MAUI
A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
3,579 questions
C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
10,997 questions
Not Monitored
Not Monitored
Tag not monitored by Microsoft.
39,571 questions
{count} votes

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.