parse.com 1.6 crash analytics not working

人走茶凉 提交于 2019-12-02 04:57:27

I suggest you to try using the device for testing the crash report feature, as by design the simulator doesn't work.

"Crash Reporting for iOS only works on a device and not in the simulator." - Björn Kaiser, from Facebook.

did you initialized crash reporting in app ? ;

// Enable Crash Reporting
[ParseCrashReporting enable];

// Setup Parse
[Parse setApplicationId:@"parseAppId" clientKey:@"parseClientKey"]; 

or if you are using Swift

// Enable Crash Reporting
ParseCrashReporting.enable();

// Setup Parse
Parse.setApplicationId("parseAppId", clientKey:"parseClientKey")

If not please do

You can always follow these step by step Tutorial on how to set it up

hope it helps.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!