My app crashes with "The process aborted due to a fail fast exception"

705 Views Asked by At

I am working with windows 10 universal apps, in my app i used webview control to load youtube, when i scrolling in youtube i crashes suddenly, with the out The process aborted due to a fail fast exception. this crash occurring only in mobile phone testing.

I loaded webview with youtube url like.

XAML code:

<WebView x:Name="webview"/>

CS Code: in page load

myWebView.Navigate(new Uri("https://www.youtube.com/"));

any one please help me to resolve this issue.

1

There are 1 best solutions below

0
On

I had the same issue as you described here. In my case, I had 1 link added in package.appxmanifest in content URIs. After I eliminate that link, app works fine, without crash.