Reputation: 62
am using visual studio and i have integrated app center for visual studio (for iOS)as like in their documentation.
I can able to see the analytics report in appcenter portal, even i can see log flow for each session. but i couldn't see crash reprots in crashlytics portal. tried with all steps, like uploading dSYM file, nothing works out. any body faced same issues?
Upvotes: 1
Views: 1511
Reputation: 2468
On iOS, it's not possible to use more than one third-party crash reporting tool at a time. Your issue most likely is that you added both the App Center and the Crashlytics SDK but only one of them is able to actually catch and report the crashes. This is a result of how crash reporting works on iOS but note that it only applies to "real" crashes, not handled errors.
You have to pick one of the SDKs to do the crash reporting for you and remove/disable the functionality in the other.
Upvotes: 4