Reputation: 109
I have uploaded my Appx bundle (UWP app) to the Microsoft store, it is certified and currently published and I tried launching it on my system. However, when I view the analytics report on Store I see there are 12 crashes. When I try to analysis the report the errors are not known.
I have two questions
How do I get the report for the crashes of my UWP app in the Microsoft App Store?
Do I have to use the App center to add crash report in my UWP code?
Upvotes: 0
Views: 739
Reputation: 39092
Basic crash reporting is available automatically in the Dev Center Dashboard: Go to your app, open Analytics and select Health. You should see a list of crashes which can be filtered as well.
To get more detail crash analytics however, using App Center is advatageous. Integrating it is quite easy - just follow the instructions in Docs. You will have to create your app in App Center and then add the App Secret to the AppCenter.Start
call in your code.
Upvotes: 0