Muhammad Touseef
Muhammad Touseef

Reputation: 4455

UWP app crashes with STOWED_EXCEPTION shown in dev store

my UWP runs fine on my PC, I downloaded it from store to check it on my pc and it runs fine, but it is crashing on certain other PCs for unknown reasons, it crashed on the splash screen and dev center is showing me following crash reports. Please let me know how can I fix or handle these exceptions.

NOTE

"Fluenttt" is the namespace of my app project. Exceptions Screenshot

Also note that dev center has no data in log for these exceptions. or no stacktrace shown.

Upvotes: 1

Views: 696

Answers (1)

Zhendong Wu - MSFT
Zhendong Wu - MSFT

Reputation: 1829

ARM can't be the reason of your crash. ARM package is for mobile device and if you don't upload it when you publish your app, your app won't be available to customer on mobile device in Store.

Without your app, it's hard to tell the reason just according to your failure name. But you could add an UnhandledException event to notify your app about exceptions encountered by the XAML framework or by Windows Runtime in general that haven't been handled by your app code.

Additionally, you could also use Custom event to log the event or activity in your app and you can review the occurrences for your custom events in the Custom Events section of the Usage report in dashboard.

Upvotes: 1

Related Questions