Vineet Choudhary
Vineet Choudhary

Reputation: 7633

How to get Universal Windows Platform (UWP) application symbolicated crash reports?

For a live/testing Universal Windows Platform(UWP) application how I can get crash reports? Is there any SDK for UWP, Like for iOS/Android platform Crashlytics provide symbolicated report about an application crash.

Following Details I want in a crash report
1. Device Details - like Device Name, Model etc
2. OS Version
3. File Name - In which app crash
4. Line Number - In which app crash
5. Parents Method - Parents Method of method in which app crash
6. Other threads details

I want something similar to Crashlytics SDK, like for iOS. Here the screenshot one of my iOS application which contains crash details enter image description here

Upvotes: 1

Views: 1295

Answers (2)

GeertvdC
GeertvdC

Reputation: 2918

Hockeyapp for UWP is in "preseason" so currently in development but available for users already.

just sign up for Hockeyapp with a free accound and apply for "preseason" you'll get access to UWP and other beta features in a few days. (at least I received access quite fast on multiple accounts)

when you have access it's just adding this nuget package: https://www.nuget.org/packages/HockeySDK.UWP

Microsoft Application Insights also has some good functionality for this but it's deprecated since last month where Microsoft tells you to move to Hockeyapp

Upvotes: 0

Scavenger
Scavenger

Reputation: 205

I suggest that you may use Hockeyapp, you may merge Hockeyapp SDK to your app, it will help you collect crash report and some other things. HockeySDK.UWP is in process now, you may use HockeySDK.WINRT instead. Here is the link.

Upvotes: 0

Related Questions